commit | 0e7d38739f4869fdf2e35f52acacb42dcd3faba6 | [log] [tgz] |
---|---|---|
author | Simon Butcher <simon.butcher@arm.com> | Tue Aug 30 14:25:24 2016 +0100 |
committer | Janos Follath <janos.follath@arm.com> | Tue Aug 30 14:25:24 2016 +0100 |
tree | dd77064424b95b9be1b589f9e41f8d34173911a2 | |
parent | 98844ff59f669867666098a026d1a11e33a1492d [diff] |
Fix warning on implicit casting in aescrypt.c (#584)
diff --git a/programs/aes/aescrypt2.c b/programs/aes/aescrypt2.c index 0270624..c77d77f 100644 --- a/programs/aes/aescrypt2.c +++ b/programs/aes/aescrypt2.c
@@ -73,7 +73,7 @@ { int ret = 1; - int i, n; + unsigned int i, n; int mode, lastn; size_t keylen; FILE *fkey, *fin = NULL, *fout = NULL;