Commit 679b3bc0 authored by Max Kellermann's avatar Max Kellermann

output/print, command/player: print bool as integer

Fixes protocol breakage after commit 0440c41c libfmt is too clever for the MPD protocol! Closes https://github.com/MusicPlayerDaemon/MPD/issues/1175
parent 1f9e32c3
......@@ -144,10 +144,10 @@ handle_status(Client &client, [[maybe_unused]] Request args, Response &r)
COMMAND_STATUS_PLAYLIST_LENGTH ": {}\n"
COMMAND_STATUS_MIXRAMPDB ": {}\n"
COMMAND_STATUS_STATE ": {}\n"),
playlist.GetRepeat(),
playlist.GetRandom(),
(unsigned)playlist.GetRepeat(),
(unsigned)playlist.GetRandom(),
SingleToString(playlist.GetSingle()),
playlist.GetConsume(),
(unsigned)playlist.GetConsume(),
partition.name.c_str(),
playlist.GetVersion(),
playlist.GetLength(),
......
......@@ -40,7 +40,7 @@ printAudioDevices(Response &r, const MultipleOutputs &outputs)
"outputenabled: {}\n"),
i,
ao.GetName(), ao.GetPluginName(),
ao.IsEnabled());
(unsigned)ao.IsEnabled());
for (const auto &[attribute, value] : ao.GetAttributes())
r.Fmt(FMT_STRING("attribute: {}={}\n"),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment