summaryrefslogtreecommitdiff
path: root/read-cache.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2017-05-04 16:26:44 +0900
committerJunio C Hamano <gitster@pobox.com>2017-05-04 16:26:44 +0900
commitfa675ebd998bcbf6192b95bb0fe70f345c06d07d (patch)
tree2ef870bc0652e2590d68c14011448c1c444e88e5 /read-cache.c
parentd2bbb7c2bcf6e77ebfcabf4e12110fe6d5c91de6 (diff)
parent78bde923f16daccf590c78a619fbdbbe2a3d82ac (diff)
downloadgit-fa675ebd998bcbf6192b95bb0fe70f345c06d07d.tar.gz
Merge branch 'ja/i18n-cleanup'
* ja/i18n-cleanup: i18n: read-cache: typofix i18n: remove i18n from tag reflog message
Diffstat (limited to 'read-cache.c')
-rw-r--r--read-cache.c2
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;