aboutsummaryrefslogtreecommitdiff
path: root/src/libstore/store-api.cc
diff options
context:
space:
mode:
authorThéophane Hufschmitt <regnat@users.noreply.github.com>2021-06-22 09:31:25 +0200
committerregnat <rg@regnat.ovh>2021-06-23 08:16:34 +0200
commit8d09a4f9a09473e6a32cc118ad10827ec5650700 (patch)
tree3bfd7f45af14067a9573dbdf4b460bc2c5da0f8a /src/libstore/store-api.cc
parentc13d7d0b9770741cc7093dc71ec8fc7978171f18 (diff)
Remove a useless string split
Co-authored-by: Eelco Dolstra <edolstra@gmail.com>
Diffstat (limited to 'src/libstore/store-api.cc')
-rw-r--r--src/libstore/store-api.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/libstore/store-api.cc b/src/libstore/store-api.cc
index 6f29c430a..7e057b1ea 100644
--- a/src/libstore/store-api.cc
+++ b/src/libstore/store-api.cc
@@ -803,8 +803,7 @@ std::map<StorePath, StorePath> copyPaths(ref<Store> srcStore, ref<Store> dstStor
if (!currentChild)
throw Error(
"Incomplete realisation closure: '%s' is a "
- "dependency "
- "of '%s' but isn’t registered",
+ "dependency of '%s' but isn’t registered",
drvOutput.to_string(), current.id.to_string());
children.insert(*currentChild);
}