summaryrefslogtreecommitdiffstats
path: root/demos/mac/cmac-aes256.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/mac/cmac-aes256.c')
-rw-r--r--demos/mac/cmac-aes256.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/demos/mac/cmac-aes256.c b/demos/mac/cmac-aes256.c
index 9b91a404a8..0431508b98 100644
--- a/demos/mac/cmac-aes256.c
+++ b/demos/mac/cmac-aes256.c
@@ -65,7 +65,7 @@ static const char *propq = NULL;
int main(void)
{
- int rv = EXIT_FAILURE;
+ int ret = EXIT_FAILURE;
OSSL_LIB_CTX *library_context = NULL;
EVP_MAC *mac = NULL;
EVP_MAC_CTX *mctx = NULL;
@@ -141,14 +141,14 @@ int main(void)
goto end;
}
- rv = EXIT_SUCCESS;
+ ret = EXIT_SUCCESS;
end:
- if (rv != EXIT_SUCCESS)
+ if (ret != EXIT_SUCCESS)
ERR_print_errors_fp(stderr);
/* OpenSSL free functions will ignore NULL arguments */
OPENSSL_free(out);
EVP_MAC_CTX_free(mctx);
EVP_MAC_free(mac);
OSSL_LIB_CTX_free(library_context);
- return rv;
+ return ret;
}