diff options
author | Mattias Andrée <maandree@operamail.com> | 2014-11-13 21:53:57 +0100 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2014-11-13 21:53:57 +0100 |
commit | e65191eeb4b9476489aac7ac0cd7af29ec949b61 (patch) | |
tree | 426c37afb9e122bc16267639f59769d299fc7978 | |
parent | add build rules to the makefile (diff) | |
download | sha3sum-e65191eeb4b9476489aac7ac0cd7af29ec949b61.tar.gz sha3sum-e65191eeb4b9476489aac7ac0cd7af29ec949b61.tar.bz2 sha3sum-e65191eeb4b9476489aac7ac0cd7af29ec949b61.tar.xz |
fix warning
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | src/common.c | 2 |
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; |