From: Richard Levitte Date: Mon, 7 Dec 2015 23:11:47 +0000 (+0100) Subject: Remove double semi (;) X-Git-Tag: OpenSSL_1_1_0-pre1~92 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3cb9fd97ced4a74ba5d4751c455146899164a202;p=openssl Remove double semi (;) When in the middle of declarations, some C compilers will complain. Reviewed-by: Matt Caswell --- 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)