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>
Peter Krefting committed
Apr 30, 2017 at 23:32 UTC
78bde923f16daccf590c78a619fbdbbe2a3d82ac
1 file changed
+1
-1
read-cache.c
+1
-1
@@ -2372,7 +2372,7 @@ static int should_delete_shared_index(const char *shared_index_path)
2372
if (!expiration)
2373
return 0;
2374
if (stat(shared_index_path, &st))
2375
- return error_errno(_("could not stat '%s"), shared_index_path);
2375
+ return error_errno(_("could not stat '%s'"), shared_index_path);
2376
if (st.st_mtime > expiration)
2377
return 0;
2378