From 8d09a4f9a09473e6a32cc118ad10827ec5650700 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Th=C3=A9ophane=20Hufschmitt?= Date: Tue, 22 Jun 2021 09:31:25 +0200 Subject: [PATCH] Remove a useless string split Co-authored-by: Eelco Dolstra --- src/libstore/store-api.cc | 3 +-- 1 file changed, 1 insertion(+), 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 copyPaths(ref srcStore, ref 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); }