From 9060d0fe46f081ce63441cedc5e16c47f31f4590 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Thu, 23 Jan 2025 16:21:30 +0100 Subject: [PATCH] Fix missing format argument --- src/nix/flake.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/nix/flake.cc b/src/nix/flake.cc index 4d5cad1a8..384c23d8c 100644 --- a/src/nix/flake.cc +++ b/src/nix/flake.cc @@ -103,7 +103,7 @@ public: throw e; } if (lockFlags.inputUpdates.contains(inputPath)) - warn("Input '%s' was specified multiple times. You may have done this by accident."); + warn("Input '%s' was specified multiple times. You may have done this by accident.", printInputPath(inputPath)); lockFlags.inputUpdates.insert(inputPath); } }},