Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/BLAKE2/BLAKE2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuel Neves <sneves@dei.uc.pt>2015-11-05 10:40:10 +0300
committerSamuel Neves <sneves@dei.uc.pt>2015-11-05 10:40:10 +0300
commit1c2b66c26d6d4914bf66a9c9ed7bbc2f98b9eec1 (patch)
treefb38d7649ae829ab169e778a9eff0f57772e1e84
parent2d362fbb682f6edb43e2a2f9e2a3e029c94c89e8 (diff)
signedness mismatch
-rw-r--r--b2sum/b2sum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/b2sum/b2sum.c b/b2sum/b2sum.c
index da12dd8..954dd46 100644
--- a/b2sum/b2sum.c
+++ b/b2sum/b2sum.c
@@ -341,7 +341,7 @@ int main( int argc, char **argv )
printf( " (%s) = ", argv[i] );
}
- for( int j = 0; j < outlen; ++j )
+ for( size_t j = 0; j < outlen; ++j )
printf( "%02x", hash[j] );
if( bsdstyle )