From: Alex Henrie Date: Thu, 27 Aug 2015 04:26:02 +0000 (-0600) Subject: reflog: add missing single quote to error message X-Git-Tag: v2.6.0-rc0~11^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=99885bc0ef0013a8979ad8cefe56360e69791811;p=thirdparty%2Fgit.git reflog: add missing single quote to error message The error message can be seen by running `git config gc.reflogexpire foo` and then `git reflog expire`. Signed-off-by: Alex Henrie Signed-off-by: Junio C Hamano --- diff --git a/builtin/reflog.c b/builtin/reflog.c index 44700f9243..177e0acd20 100644 --- a/builtin/reflog.c +++ b/builtin/reflog.c @@ -497,7 +497,7 @@ static int parse_expire_cfg_value(const char *var, const char *value, unsigned l if (!value) return config_error_nonbool(var); if (parse_expiry_date(value, expire)) - return error(_("%s' for '%s' is not a valid timestamp"), + return error(_("'%s' for '%s' is not a valid timestamp"), value, var); return 0; }