summaryrefslogtreecommitdiffstats
path: root/crypto/evp
diff options
context:
space:
mode:
authorBen Laurie <ben@links.org>2013-03-23 19:04:46 +0000
committerDr. Stephen Henson <steve@openssl.org>2013-10-01 14:01:17 +0100
commit93a886b45a93c86190ebb83a84368dca5397ef58 (patch)
tree8934d852b7b09d905d48dd37101dc17fc34903b0 /crypto/evp
parentec19082eccd008a9aee089696ba346e7316b47f3 (diff)
Fix warnings.
(cherry picked from commit 282a480a352e2aac4fad6e75932d951659bff62d)
Diffstat (limited to 'crypto/evp')
-rw-r--r--crypto/evp/evp_test.c4
1 files changed, 3 insertions, 1 deletions
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;