From 559a2d1bc7ca32a4cc73fbfa207c456769c3d8ff Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=B6rg=20Thalheim?= Date: Tue, 11 Feb 2025 12:21:25 +0700 Subject: [PATCH] libfetchers/git: fix double quoting in error message --- src/libfetchers/git.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libfetchers/git.cc b/src/libfetchers/git.cc index f46334d30..e25669579 100644 --- a/src/libfetchers/git.cc +++ b/src/libfetchers/git.cc @@ -637,7 +637,7 @@ struct GitInputScheme : InputScheme if (!input.getRev()) setWriteTime(localRefFile, now, now); } catch (Error & e) { - warn("could not update mtime for file '%s': %s", localRefFile, e.info().msg); + warn("could not update mtime for file %s: %s", localRefFile, e.info().msg); } if (!originalRef && !storeCachedHead(repoUrl.to_string(), ref)) warn("could not update cached head '%s' for '%s'", ref, repoInfo.locationToArg());