diff options
author | Junio C Hamano <junkio@cox.net> | 2006-08-03 21:55:41 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-03 21:55:41 -0700 |
commit | cba05fa840b637db2708014142a753680d930082 (patch) | |
tree | 69fe98c891863e698e0eee02e52bfddb59c382bb /builtin-check-ref-format.c | |
parent | 8cdf33643dc0b21d9ea922a3fdd7f64226c421aa (diff) | |
download | git-cba05fa840b637db2708014142a753680d930082.tar.gz |
Further clean-up: usage() vs die()
This hopefully finishes the clean-up Ramsay started with recent
commit 15e593e4d37d1d350fef20ab666d58f6881c7f5f and commit
8cdf33643dc0b21d9ea922a3fdd7f64226c421aa.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'builtin-check-ref-format.c')
-rw-r--r-- | builtin-check-ref-format.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-check-ref-format.c b/builtin-check-ref-format.c index 701de439ae..fe04be77a9 100644 --- a/builtin-check-ref-format.c +++ b/builtin-check-ref-format.c @@ -9,6 +9,6 @@ int cmd_check_ref_format(int argc, const char **argv, const char *prefix) { if (argc != 2) - usage("git check-ref-format refname"); + usage("git-check-ref-format refname"); return !!check_ref_format(argv[1]); } |