daemon: Fix typo in format string.

* nix/libstore/build.cc (Worker::waitForInput): Fix typo in format string.

Change-Id: I0a39ada8a347c8c8daddd9f34292cbbb03ba0076
This commit is contained in:
Ludovic Courtès 2025-12-22 23:50:31 +01:00
parent d4ed26d5be
commit 6f1448ef89
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -4390,7 +4390,7 @@ void Worker::waitForInput()
after - j->second.timeStarted >= (time_t) settings.buildTimeout)
{
printMsg(lvlError,
std::format("{} timed out after %2% seconds",
std::format("{} timed out after {} seconds",
goal->getName(), settings.buildTimeout));
goal->timedOut();
}