From 59b6b15106877097c5d8eb1f597f16c5e3250995 Mon Sep 17 00:00:00 2001 From: Rangi Date: Mon, 13 Jul 2026 21:30:23 -0400 Subject: [PATCH] Run `make format` --- src/gfx/process.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/gfx/process.cpp b/src/gfx/process.cpp index 9a42f7b2..54c28f12 100644 --- a/src/gfx/process.cpp +++ b/src/gfx/process.cpp @@ -353,7 +353,10 @@ static std::pair, std::vector> // local binding declared in enclosing function") is not sufficiently supported by clang. verboseDo(VERB_INFO, [&mappingsV = mappings, &nbPalettesV = nbPalettes]() { fprintf( - stderr, "Color set mappings: (%zu palette%s)\n", nbPalettesV, nbPalettesV != 1 ? "s" : "" + stderr, + "Color set mappings: (%zu palette%s)\n", + nbPalettesV, + nbPalettesV != 1 ? "s" : "" ); for (size_t i = 0; i < mappingsV.size(); ++i) { fprintf(stderr, "%zu -> %zu\n", i, mappingsV[i]);