From: Peter Krefting Date: Sun, 30 Apr 2017 21:32:48 +0000 (+0200) Subject: i18n: read-cache: typofix X-Git-Tag: v2.13.0-rc2~5^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=78bde923f16daccf590c78a619fbdbbe2a3d82ac;p=thirdparty%2Fgit.git i18n: read-cache: typofix Signed-off-by: Peter Krefting Signed-off-by: Jean-Noel Avila Signed-off-by: Junio C Hamano --- 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;