From: Ben Laurie Date: Sat, 23 Mar 2013 19:04:46 +0000 (+0000) Subject: Fix warnings. X-Git-Tag: master-post-reformat~1352 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=282a480a352e2aac4fad6e75932d951659bff62d;p=oweals%2Fopenssl.git Fix warnings. --- diff --git a/crypto/evp/evp_test.c b/crypto/evp/evp_test.c index 5289342953..bc15348f5e 100644 --- a/crypto/evp/evp_test.c +++ b/crypto/evp/evp_test.c @@ -534,7 +534,9 @@ int main(int argc,char **argv) char *cipher; unsigned char *iv,*key,*plaintext,*ciphertext,*aad,*tag; int encdec; - int kn,in,pn,cn,an,tn; + int kn,in,pn,cn; + int an = 0; + int tn = 0; if(!fgets((char *)line,sizeof line,f)) break;