diff options
| author | Ludovic Courtès <ludo@gnu.org> | 2025-12-22 23:50:31 +0100 |
|---|---|---|
| committer | Ludovic Courtès <ludo@gnu.org> | 2025-12-26 00:01:43 +0100 |
| commit | 6f1448ef89c8ad29e2a479099531fd3a87701e46 (patch) | |
| tree | 18bae1d1e0c18efe63585099a8645296ae4b1953 | |
| parent | d4ed26d5be0f3a3a4866ad195a52d380fb0c8bd4 (diff) | |
daemon: Fix typo in format string.
* nix/libstore/build.cc (Worker::waitForInput): Fix typo in format string.
Change-Id: I0a39ada8a347c8c8daddd9f34292cbbb03ba0076
| -rw-r--r-- | nix/libstore/build.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nix/libstore/build.cc b/nix/libstore/build.cc index 935f7aacf83..3071c8ef10d 100644 --- a/nix/libstore/build.cc +++ b/nix/libstore/build.cc | |||
| @@ -4390,7 +4390,7 @@ void Worker::waitForInput() | |||
| 4390 | after - j->second.timeStarted >= (time_t) settings.buildTimeout) | 4390 | after - j->second.timeStarted >= (time_t) settings.buildTimeout) |
| 4391 | { | 4391 | { |
| 4392 | printMsg(lvlError, | 4392 | printMsg(lvlError, |
| 4393 | std::format("{} timed out after %2% seconds", | 4393 | std::format("{} timed out after {} seconds", |
| 4394 | goal->getName(), settings.buildTimeout)); | 4394 | goal->getName(), settings.buildTimeout)); |
| 4395 | goal->timedOut(); | 4395 | goal->timedOut(); |
| 4396 | } | 4396 | } |
