diff options
author | Junio C Hamano <gitster@pobox.com> | 2008-04-10 09:29:33 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-04-10 09:29:33 +0200 |
commit | 179c94b24ae87e28328f9b311489417b66bd62c9 (patch) | |
tree | 3458de6031a61992cf96700826c29096867cae43 /parse-options.c | |
parent | GIT 1.5.5 (diff) | |
parent | core-tutorial.txt: Fix showing the current behaviour. (diff) | |
download | git-179c94b24ae87e28328f9b311489417b66bd62c9.tar.xz git-179c94b24ae87e28328f9b311489417b66bd62c9.zip |
Merge branch 'maint-1.5.4' into maint
* maint-1.5.4:
core-tutorial.txt: Fix showing the current behaviour.
git-archive: ignore prefix when checking file attribute
Fix documentation syntax of optional arguments in short options.
Diffstat (limited to 'parse-options.c')
-rw-r--r-- | parse-options.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/parse-options.c b/parse-options.c index e87cafbe41..acf3fe3a1a 100644 --- a/parse-options.c +++ b/parse-options.c @@ -344,7 +344,7 @@ void usage_with_options_internal(const char * const *usagestr, break; case OPTION_INTEGER: if (opts->flags & PARSE_OPT_OPTARG) - pos += fprintf(stderr, " [<n>]"); + pos += fprintf(stderr, "[<n>]"); else pos += fprintf(stderr, " <n>"); break; |