diff options
author | Peter Krefting <peter@softwolves.pp.se> | 2017-04-30 23:32:48 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-05-01 11:08:02 +0900 |
commit | 78bde923f16daccf590c78a619fbdbbe2a3d82ac (patch) | |
tree | 88440300dea55c38454268c4c74232c138bea501 | |
parent | i18n: remove i18n from tag reflog message (diff) | |
download | tgif-78bde923f16daccf590c78a619fbdbbe2a3d82ac.tar.xz |
i18n: read-cache: typofix
Signed-off-by: Peter Krefting <peter@softwolves.pp.se>
Signed-off-by: Jean-Noel Avila <jn.avila@free.fr>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | read-cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/read-cache.c b/read-cache.c index b3d0f3c30b..0d0081a11b 100644 --- a/read-cache.c +++ b/read-cache.c @@ -2372,7 +2372,7 @@ static int should_delete_shared_index(const char *shared_index_path) if (!expiration) return 0; if (stat(shared_index_path, &st)) - return error_errno(_("could not stat '%s"), shared_index_path); + return error_errno(_("could not stat '%s'"), shared_index_path); if (st.st_mtime > expiration) return 0; |