aboutsummaryrefslogtreecommitdiffstats
path: root/src/common.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@operamail.com>2014-11-13 21:53:57 +0100
committerMattias Andrée <maandree@operamail.com>2014-11-13 21:53:57 +0100
commite65191eeb4b9476489aac7ac0cd7af29ec949b61 (patch)
tree426c37afb9e122bc16267639f59769d299fc7978 /src/common.c
parentadd build rules to the makefile (diff)
downloadsha3sum-e65191eeb4b9476489aac7ac0cd7af29ec949b61.tar.gz
sha3sum-e65191eeb4b9476489aac7ac0cd7af29ec949b61.tar.bz2
sha3sum-e65191eeb4b9476489aac7ac0cd7af29ec949b61.tar.xz
fix warning
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to 'src/common.c')
-rw-r--r--src/common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common.c b/src/common.c
index 425db10..520ccbd 100644
--- a/src/common.c
+++ b/src/common.c
@@ -252,7 +252,7 @@ int run(int argc, char* argv[], libkeccak_generalised_spec_t* restrict spec, con
if (args_files_count == 0)
r = print_checksum("-", spec, squeezes, suffix, presentation, verbose, *argv);
else
- for (i = 0; i < args_files_count; i++, verbose = 0)
+ for (i = 0; i < (size_t)args_files_count; i++, verbose = 0)
if ((r = print_checksum(args_files[i], spec, squeezes, suffix, presentation, verbose, *argv)))
break;