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
path: root/b2sum
diff options
context:
space:
mode:
authorArtem Chudinov <arzeth0@gmail.com>2015-10-30 20:46:20 +0300
committerArtem Chudinov <arzeth0@gmail.com>2015-10-30 20:47:54 +0300
commitd97dff9d0250a6281edb548cd4ca66af36f159af (patch)
treee121485dc4c5ef997fe0b1218eae89380e41e2e9 /b2sum
parent01f12dbc5ccf2fdb552339218ac92402a5f2ab22 (diff)
b2sum: Output 2 spaces instead of 1
To be similar to coreutils' sha256sum.
Diffstat (limited to 'b2sum')
-rw-r--r--b2sum/b2sum.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/b2sum/b2sum.c b/b2sum/b2sum.c
index ebf1757..da12dd8 100644
--- a/b2sum/b2sum.c
+++ b/b2sum/b2sum.c
@@ -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 );