diff options
author | Junio C Hamano <gitster@pobox.com> | 2015-09-01 16:31:18 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-09-01 16:31:18 -0700 |
commit | bc1c6009c6b6dd1048c4111f63eae409ab0d1515 (patch) | |
tree | 3fa885d6f596e2c0d64edcec9d5eff34e8e91aaa /builtin/reflog.c | |
parent | 0b20a4680bf668ba2719fa48a9bdbf137253a4b6 (diff) | |
parent | 99885bc0ef0013a8979ad8cefe56360e69791811 (diff) | |
download | git-bc1c6009c6b6dd1048c4111f63eae409ab0d1515.tar.gz |
Merge branch 'ah/reflog-typofix-in-error'
Error string fix.
* ah/reflog-typofix-in-error:
reflog: add missing single quote to error message
Diffstat (limited to 'builtin/reflog.c')
-rw-r--r-- | builtin/reflog.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/reflog.c b/builtin/reflog.c index 7ed0e8501c..f96ca2a27d 100644 --- a/builtin/reflog.c +++ b/builtin/reflog.c @@ -429,7 +429,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; } |