From 15969c51c318f6d6f398e35cf989a6e367a0670b Mon Sep 17 00:00:00 2001 From: Kate Temkin Date: Mon, 8 Dec 2025 23:35:41 +0100 Subject: [PATCH] legacy/build-remote: fix a missing format string argument Change-Id: Ic3156695a7f41367d413f2da3b5791d489576d47 --- lix/legacy/build-remote.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lix/legacy/build-remote.cc b/lix/legacy/build-remote.cc index 27521446f..1b7786ca8 100644 --- a/lix/legacy/build-remote.cc +++ b/lix/legacy/build-remote.cc @@ -527,7 +527,7 @@ kj::Promise AcceptedBuild::runImpl(RunContext context) AIO().timeoutAfter(15 * kj::MINUTES, lockFileAsync(uploadLock.get(), ltWrite)) ); if (!result) { - printError("somebody is hogging the upload lock for '%s', continuing..."); + printError("somebody is hogging the upload lock for '%s', continuing...", storeUri); } }