Skip to content

Commit

Permalink
fix missing newline in usage instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
dbro committed Jan 30, 2014
1 parent 36e5dac commit e589a1d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion csvquote.c
Expand Up @@ -163,7 +163,7 @@ int main(int argc, char *argv[]) {

usage:
fprintf(stderr, "Usage: %s [OPTION] [files]\n", argv[0]);
fprintf(stderr, "\tfiles are zero or more filenames. If none given, read from standard input");
fprintf(stderr, "\tfiles are zero or more filenames. If none given, read from standard input\n");
fprintf(stderr, "\t-u\tdefault false\trestore mode. replace nonprinting characters with original characters\n");
fprintf(stderr, "\t-d\tdefault ,\tfield separator character\n");
fprintf(stderr, "\t-t\tdefault false\tuse tab as the field separator character\n");
Expand Down

0 comments on commit e589a1d

Please sign in to comment.