Skip to content

Commit

Permalink
test-genrandom: Add newline to usage string
Browse files Browse the repository at this point in the history
A minor fix to place the terminal input on a new line if test-genrandom
is run with no arguments.

Signed-off-by: Stephen Boyd <bebarino@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Stephen Boyd authored and Junio C Hamano committed Apr 23, 2009
1 parent 6285441 commit c231822
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test-genrandom.c
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ int main(int argc, char *argv[])
unsigned char *c;

if (argc < 2 || argc > 3) {
fprintf( stderr, "Usage: %s <seed_string> [<size>]", argv[0]);
fprintf(stderr, "Usage: %s <seed_string> [<size>]\n", argv[0]);
return 1;
}

Expand Down

0 comments on commit c231822

Please sign in to comment.