1
1
mirror of https://github.com/BLAKE2/BLAKE2 synced 2024-09-18 08:51:39 +02:00

signedness mismatch

This commit is contained in:
Samuel Neves 2015-11-05 07:40:10 +00:00
parent 2d362fbb68
commit 1c2b66c26d

View File

@ -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 )