examples/network/git2.c: add newline to usage message

This commit is contained in:
Brandon Casey 2011-11-06 19:43:44 -06:00
parent faeebd06e4
commit 983562e475

View File

@ -44,7 +44,7 @@ int main(int argc, char **argv)
int i, error;
if (argc < 2) {
fprintf(stderr, "usage: %s <cmd> [repo]", argv[0]);
fprintf(stderr, "usage: %s <cmd> [repo]\n", argv[0]);
}
for (i = 0; commands[i].name != NULL; ++i) {