* Fixed missing newline in usemsg().
authorUrban Wallasch <urban.wallasch@freenet.de>
Wed, 18 Jul 2018 13:15:26 +0000 (15:15 +0200)
committerUrban Wallasch <urban.wallasch@freenet.de>
Wed, 18 Jul 2018 13:15:26 +0000 (15:15 +0200)
base2.c

diff --git a/base2.c b/base2.c
index 20d3a9aae49700b45c3df05ddaeb8be569a98821..b7db8a738f78e7932a036418f04db362fda8e4d0 100644 (file)
--- a/base2.c
+++ b/base2.c
@@ -32,7 +32,7 @@ static int b2decode( FILE *inf, FILE *outf ) {
 }
 
 void usemsg( const char *n ) {
-    fprintf( stderr, "Usage:\n%s [-c] [-d] [-t ABCD]", n );
+    fprintf( stderr, "Usage:\n%s [-c] [-d] [-t ABCD]\n", n );
     exit( EXIT_FAILURE );
 }