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]);