From 68384a27e5780fa36e62850d72806e41b3423e6b Mon Sep 17 00:00:00 2001 From: Jakob Pfender Date: Tue, 17 May 2011 17:24:28 +0200 Subject: [PATCH] config.c: Fix format string error --- src/config.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/config.c b/src/config.c index 2ee49e0c9..29b9b799f 100644 --- a/src/config.c +++ b/src/config.c @@ -248,7 +248,7 @@ int git_config_get_long(git_config *cfg, const char *name, long int *out) num *= 1024 * 1024 * 1024; break; default: - return git__throw(GIT_EINVALIDTYPE, "Failed to get value for %s. Value is of invalid type"); + return git__throw(GIT_EINVALIDTYPE, "Failed to get value for %s. Value is of invalid type", name); } *out = num;