*: let libfmt quote strings

This commit is contained in:
Max Kellermann
2024-04-16 11:06:34 +02:00
parent 39c9e92f42
commit 0c1ecc96a8
71 changed files with 160 additions and 160 deletions

View File

@@ -623,7 +623,7 @@ Player::CheckDecoderStartup(std::unique_lock<Mutex> &lock) noexcept
if (!paused && !OpenOutput()) {
FmtError(player_domain,
"problems opening audio device "
"while playing \"{}\"",
"while playing {:?}",
dc.song->GetURI());
return true;
}
@@ -1065,7 +1065,7 @@ Player::SongBorder() noexcept
{
const ScopeUnlock unlock(pc.mutex);
FmtNotice(player_domain, "played \"{}\"", song->GetURI());
FmtNotice(player_domain, "played {:?}", song->GetURI());
ReplacePipe(dc.pipe);
@@ -1211,7 +1211,7 @@ Player::Run() noexcept
cross_fade_tag.reset();
if (song != nullptr) {
FmtNotice(player_domain, "played \"{}\"", song->GetURI());
FmtNotice(player_domain, "played {:?}", song->GetURI());
song.reset();
}