summaryrefslogtreecommitdiff
path: root/diff-tree.c
diff options
context:
space:
mode:
authorPetr Baudis <pasky@suse.cz>2005-07-29 09:01:26 (GMT)
committerJunio C Hamano <junkio@cox.net>2005-07-30 00:21:50 (GMT)
commit4d1f11903393bd79998144ce1089ce427a49a2ed (patch)
tree1abd1ae3781d10f15834ab35e12cc7d2252ad9a6 /diff-tree.c
parent0b124bb4bf8eafae8a4eae9c1fc44bf63da2e62e (diff)
downloadgit-4d1f11903393bd79998144ce1089ce427a49a2ed.zip
git-4d1f11903393bd79998144ce1089ce427a49a2ed.tar.gz
git-4d1f11903393bd79998144ce1089ce427a49a2ed.tar.bz2
[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 'diff-tree.c')
-rw-r--r--diff-tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/diff-tree.c b/diff-tree.c
index 5b9467d..0dd3cda 100644
--- a/diff-tree.c
+++ b/diff-tree.c
@@ -395,7 +395,7 @@ static int diff_tree_stdin(char *line)
return diff_tree_commit(commit, line);
}
-static char *diff_tree_usage =
+static const char diff_tree_usage[] =
"git-diff-tree [--stdin] [-m] [-s] [-v] [--pretty] [-t] "
"[<common diff options>] <tree-ish> <tree-ish>"
COMMON_DIFF_OPTIONS_HELP;