diff options
author | John Ericson <John.Ericson@Obsidian.Systems> | 2020-08-24 18:10:58 +0000 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-08-24 19:01:07 +0000 |
commit | 59979e705352abb1624d3427c2c7145ed43b1b84 (patch) | |
tree | 01518201ae12c79731b4ace6987ab7764d7882bd | |
parent | b0b59fd05a1b003536f498c906350f5e1052d218 (diff) |
Fix bad debug format string
-rw-r--r-- | src/libstore/build.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index ba28e78c8..6baaa31d9 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -3850,7 +3850,7 @@ void DerivationGoal::registerOutputs() something like that. */ canonicalisePathMetaData(actualPath, buildUser ? buildUser->getUID() : -1, inodesSeen); - debug("scanning for references for output %1 in temp location '%1%'", outputName, actualPath); + debug("scanning for references for output '%s' in temp location '%s'", outputName, actualPath); /* Pass blank Sink as we are not ready to hash data at this stage. */ NullSink blank; |