diff options
author | Petr Baudis <pasky@suse.cz> | 2005-07-29 11:01:26 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-07-29 17:21:50 -0700 |
commit | 4d1f11903393bd79998144ce1089ce427a49a2ed (patch) | |
tree | 1abd1ae3781d10f15834ab35e12cc7d2252ad9a6 /checkout-cache.c | |
parent | 0b124bb4bf8eafae8a4eae9c1fc44bf63da2e62e (diff) | |
download | git-4d1f11903393bd79998144ce1089ce427a49a2ed.tar.gz git-4d1f11903393bd79998144ce1089ce427a49a2ed.tar.xz |
[PATCH] Unify usage strings declaration
All usage strings are now declared as static const char [].
This is carried over from my old git-pb branch.
Signed-off-by: Petr Baudis <pasky@ucw.cz>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'checkout-cache.c')
-rw-r--r-- | checkout-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/checkout-cache.c b/checkout-cache.c index d6c4ff104..8d67403ae 100644 --- a/checkout-cache.c +++ b/checkout-cache.c @@ -75,7 +75,7 @@ static int checkout_all(void) return 0; } -static const char *checkout_cache_usage = +static const char checkout_cache_usage[] = "git-checkout-cache [-u] [-q] [-a] [-f] [-n] [--prefix=<string>] [--] <file>..."; int main(int argc, char **argv) |