Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephen Boyd <bebarino@gmail.com>2009-04-23 11:25:33 +0400
committerJunio C Hamano <gitster@pobox.com>2009-04-23 12:29:00 +0400
commitc2318228ab327999520b2e5dbc9edbd619a73105 (patch)
tree6da6cb895df387758581fc795236bcac26543b0f /test-genrandom.c
parent62854410449ec407a363e4bb1dc980a75aa1699d (diff)
test-genrandom: Add newline to usage string
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>
Diffstat (limited to 'test-genrandom.c')
-rw-r--r--test-genrandom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-genrandom.c b/test-genrandom.c
index 8cefe6cfed..8ad276d062 100644
--- a/test-genrandom.c
+++ b/test-genrandom.c
@@ -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;
}