From 282a480a352e2aac4fad6e75932d951659bff62d Mon Sep 17 00:00:00 2001 From: Ben Laurie Date: Sat, 23 Mar 2013 19:04:46 +0000 Subject: [PATCH] Fix warnings. --- crypto/evp/evp_test.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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; -- 2.25.1