summaryrefslogtreecommitdiff
path: root/test-parse-options.c
diff options
context:
space:
mode:
authorMichael J Gruber <git@drmicha.warpmail.net>2011-02-15 13:09:13 (GMT)
committerJunio C Hamano <gitster@pobox.com>2011-02-15 19:53:11 (GMT)
commit41dbcd45409b2986c011e67dd9e2b4d3072fc88d (patch)
treef2398fca4295e83092d8db6de37b07fc65d27a13 /test-parse-options.c
parent23c6a803d3e6523ec20154e30ae8a51d2ff998ca (diff)
downloadgit-41dbcd45409b2986c011e67dd9e2b4d3072fc88d.zip
git-41dbcd45409b2986c011e67dd9e2b4d3072fc88d.tar.gz
git-41dbcd45409b2986c011e67dd9e2b4d3072fc88d.tar.bz2
Make <identifier> lowercase as per CodingGuidelines
*.c part for matches with '<[A-Z]+>' (and affected test). Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'test-parse-options.c')
-rw-r--r--test-parse-options.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/test-parse-options.c b/test-parse-options.c
index 0828592..4e3710b 100644
--- a/test-parse-options.c
+++ b/test-parse-options.c
@@ -46,7 +46,7 @@ int main(int argc, const char **argv)
OPT_DATE('t', NULL, &timestamp, "get timestamp of <time>"),
OPT_CALLBACK('L', "length", &integer, "str",
"get length of <str>", length_callback),
- OPT_FILENAME('F', "file", &file, "set file to <FILE>"),
+ OPT_FILENAME('F', "file", &file, "set file to <file>"),
OPT_GROUP("String options"),
OPT_STRING('s', "string", &string, "string", "get a string"),
OPT_STRING(0, "string2", &string, "str", "get another string"),