diff options
author | Junio C Hamano <junkio@cox.net> | 2005-07-27 00:04:16 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-07-27 11:53:49 -0700 |
commit | 54c6870ebf4c364dd809a1a58eb8485855344812 (patch) | |
tree | eb2fbd3b0e5419b6e58b447fa00b6bd788f195d1 /prune-packed.c | |
parent | b134922992e3051e7095b1e76a89361fea86206d (diff) | |
download | git-54c6870ebf4c364dd809a1a58eb8485855344812.tar.gz git-54c6870ebf4c364dd809a1a58eb8485855344812.tar.xz |
Typofix: usage strings fix.
The *_usage strings should not start with "usage: ", since the
usage() function gives its own.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'prune-packed.c')
-rw-r--r-- | prune-packed.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/prune-packed.c b/prune-packed.c index 41ee2a73b..a2f448830 100644 --- a/prune-packed.c +++ b/prune-packed.c @@ -1,6 +1,6 @@ #include "cache.h" -static const char prune_packed_usage[] = "git-prune-packed: usage: git-prune-packed"; +static const char prune_packed_usage[] = "git-prune-packed (no arguments)"; static void prune_dir(int i, DIR *dir, char *pathname, int len) { |