lib/fmt: remove even more now-broken uses of FMT_STRING
MPD stopped building since fmt 11.1.0; see <https://github.com/fmtlib/fmt/issues/4304>. The first commit fixing this was9db7144
, followed by5de0909
(both on the unstable branch). This commit removes what the author believes to be the remaining uses in the MPD codebase.
This commit is contained in:
@@ -27,7 +27,7 @@ decoder_plugin_print(Response &r,
|
||||
|
||||
if (plugin.suffixes_function != nullptr)
|
||||
for (const auto &i : plugin.suffixes_function())
|
||||
r.Fmt(FMT_STRING("suffix: {}\n"), i);
|
||||
r.Fmt("suffix: {}\n", i);
|
||||
|
||||
if (plugin.mime_types != nullptr)
|
||||
for (p = plugin.mime_types; *p != nullptr; ++p)
|
||||
|
Reference in New Issue
Block a user