From 27fad52c6bb1d8803f400a6e95fa5c24396a1c12 Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 23 Sep 2008 20:48:12 +0200 Subject: start using prefixcmp() LOC reduction and less noise makes things easier for tired old folks to follow. --- src/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/main.c') diff --git a/src/main.c b/src/main.c index 2ca5a56d9..f37fa3328 100644 --- a/src/main.c +++ b/src/main.c @@ -152,7 +152,7 @@ static void parseOptions(int argc, char **argv, Options * options) if (argc > 1) { int i = 1; while (i < argc) { - if (strncmp(argv[i], "--", 2) == 0) { + if (!prefixcmp(argv[i], "--")) { if (strcmp(argv[i], "--help") == 0) { usage(argv); exit(EXIT_SUCCESS); -- cgit v1.2.3