LibCore: Use new format functions in some places.

This commit is contained in:
asynts 2020-10-15 13:21:23 +02:00 committed by Andreas Kling
commit c9ca897a45
Notes: sideshowbarker 2024-07-19 01:52:10 +09:00
7 changed files with 63 additions and 61 deletions

View file

@ -110,7 +110,7 @@ String command(const String& program, const Vector<String>& arguments, Optional<
if (WEXITSTATUS(wstatus) != 0) {
# ifdef DBG_FAILED_COMMANDS
dbg() << "command failed. stderr: " << read_all_from_pipe(stderr_pipe);
dbgln("command failed. stderr: {}", read_all_from_pipe(stderr_pipe));
# endif
return {};
}