util/domd: harmonize with compiler detection in Configure.
[oweals/openssl.git] / crypto / hmac / hmac.c
index 213504e85fee582ac8848d869b9f74d6e4d1895c..023ec456f94ca542c49c6d82656f71b87c4de29e 100644 (file)
@@ -234,7 +234,7 @@ void HMAC_CTX_cleanup(HMAC_CTX *ctx)
     EVP_MD_CTX_cleanup(&ctx->i_ctx);
     EVP_MD_CTX_cleanup(&ctx->o_ctx);
     EVP_MD_CTX_cleanup(&ctx->md_ctx);
-    OPENSSL_cleanse(ctx, sizeof *ctx);
+    OPENSSL_cleanse(ctx, sizeof(*ctx));
 }
 
 unsigned char *HMAC(const EVP_MD *evp_md, const void *key, int key_len,