From 6667a6ac20747eb56eb2c03c39aceaf6aebbae3c Mon Sep 17 00:00:00 2001 From: Junio C Hamano Date: Thu, 8 Aug 2013 21:41:44 -0700 Subject: builtin/config.c: compilation fix Do not feed a random string as the first parameter to die(); use "%s" as the format string instead. Do the same for test-urlmatch-normalization.c while saving a single pointer variable by turning a "const char *" constant string into "const char []", which is sufficient to squelch compilation warning (the compiler can see usage[] given to die() is a constant and will never have conversion specifiers that cause trouble). But for a good measure, give them the same "%s" treatment as well. Signed-off-by: Junio C Hamano --- builtin/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'builtin/config.c') diff --git a/builtin/config.c b/builtin/config.c index c046f54829..ae199e9f75 100644 --- a/builtin/config.c +++ b/builtin/config.c @@ -404,7 +404,7 @@ static int get_urlmatch(const char *var, const char *url) config.cb = &values; if (!url_normalize(url, &config.url)) - die(config.url.err); + die("%s", config.url.err); config.section = dup_downcase(var); section_tail = strchr(config.section, '.'); -- cgit v1.2.1