1
1
mirror of https://github.com/BLAKE2/BLAKE2 synced 2024-11-08 14:59:19 +01:00

b2sum: Output 2 spaces instead of 1

To be similar to coreutils' sha256sum.
This commit is contained in:
Artem Chudinov 2015-10-30 22:46:20 +05:00
parent 01f12dbc5c
commit d97dff9d02

@ -347,7 +347,7 @@ int main( int argc, char **argv )
if( bsdstyle )
printf( "\n" );
else
printf( " %s\n", argv[i] );
printf( " %s\n", argv[i] );
}
if( f != stdin ) fclose( f );