From 99885bc0ef0013a8979ad8cefe56360e69791811 Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Wed, 26 Aug 2015 22:26:02 -0600 Subject: 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 --- builtin/reflog.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.1