From 3cb9fd97ced4a74ba5d4751c455146899164a202 Mon Sep 17 00:00:00 2001 From: Richard Levitte Date: Tue, 8 Dec 2015 00:11:47 +0100 Subject: [PATCH] Remove double semi (;) When in the middle of declarations, some C compilers will complain. Reviewed-by: Matt Caswell --- crypto/pem/pvkfmt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crypto/pem/pvkfmt.c b/crypto/pem/pvkfmt.c index c95967cae1..58cbd07475 100644 --- a/crypto/pem/pvkfmt.c +++ b/crypto/pem/pvkfmt.c @@ -650,7 +650,7 @@ static int derive_pvk_key(unsigned char *key, const unsigned char *salt, unsigned int saltlen, const unsigned char *pass, int passlen) { - EVP_MD_CTX *mctx = EVP_MD_CTX_new();; + EVP_MD_CTX *mctx = EVP_MD_CTX_new(); int rv = 1; if (mctx == NULL || !EVP_DigestInit_ex(mctx, EVP_sha1(), NULL) -- GitLab