diff options
author | David Aguilar <davvid@gmail.com> | 2013-02-24 23:48:39 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-02-25 06:30:10 +0100 |
commit | b978403aed7f2df46bc4c8a63314959d8982e0ac (patch) | |
tree | fab454dbdd4fb8734309938f65e33435f3ec2b78 /test-chmtime.c | |
parent | git-svn: use a lowercase "usage:" string (diff) | |
download | git-b978403aed7f2df46bc4c8a63314959d8982e0ac.tar.xz git-b978403aed7f2df46bc4c8a63314959d8982e0ac.zip |
tests: use a lowercase "usage:" string
Adjust test commands and test suites so that their
usage strings are consistent with Git.
Signed-off-by: David Aguilar <davvid@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'test-chmtime.c')
-rw-r--r-- | test-chmtime.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-chmtime.c b/test-chmtime.c index 92713d16da..02b42badd5 100644 --- a/test-chmtime.c +++ b/test-chmtime.c @@ -114,6 +114,6 @@ int main(int argc, const char *argv[]) return 0; usage: - fprintf(stderr, "Usage: %s %s\n", argv[0], usage_str); + fprintf(stderr, "usage: %s %s\n", argv[0], usage_str); return -1; } |