summaryrefslogtreecommitdiff
path: root/demos/mac/siphash.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/mac/siphash.c')
-rw-r--r--demos/mac/siphash.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/demos/mac/siphash.c b/demos/mac/siphash.c
index 4d36a9d486..5487e35c8e 100644
--- a/demos/mac/siphash.c
+++ b/demos/mac/siphash.c
@@ -44,7 +44,7 @@ static char *propq = NULL;
int main(int argc, char **argv)
{
- int rv = EXIT_FAILURE;
+ int ret = EXIT_FAILURE;
EVP_MAC *mac = NULL;
EVP_MAC_CTX *mctx = NULL;
unsigned char out[8];
@@ -118,12 +118,12 @@ int main(int argc, char **argv)
goto end;
}
- rv = EXIT_SUCCESS;
+ ret = EXIT_SUCCESS;
end:
EVP_MAC_CTX_free(mctx);
EVP_MAC_free(mac);
OSSL_LIB_CTX_free(library_context);
- if (rv != EXIT_SUCCESS)
+ if (ret != EXIT_SUCCESS)
ERR_print_errors_fp(stderr);
- return rv;
+ return ret;
}