event/Thread, ...: fix printf->libfmt remains

This commit is contained in:
Max Kellermann
2021-10-19 13:19:04 +02:00
parent 0a9bec3754
commit 070c03dbf7
4 changed files with 5 additions and 5 deletions

View File

@@ -435,7 +435,7 @@ AudioOutputControl::Task() noexcept
SetThreadRealtime();
} catch (...) {
FmtInfo(output_domain,
"OutputThread could not get realtime scheduling, continuing anyway: %s",
"OutputThread could not get realtime scheduling, continuing anyway: {}",
std::current_exception());
}

View File

@@ -195,7 +195,7 @@ FifoOutput::Cancel() noexcept
if (bytes < 0 && errno != EAGAIN) {
FmtError(fifo_output_domain,
"Flush of FIFO \"{}\" failed: %s",
"Flush of FIFO \"{}\" failed: {}",
path_utf8, strerror(errno));
}
}