Merge pull request #2677 from MatthewGentoo/bug-928361

mu-utils: Fix build with musl
This commit is contained in:
Dirk-Jan C. Binnema
2024-04-01 20:05:52 +08:00
committed by GitHub

View File

@ -265,7 +265,7 @@ bool fputs_encoded (const std::string& str, FILE *stream);
template<typename...T>
static inline bool mu_print_encoded(fmt::format_string<T...> frm, T&&... args) noexcept {
return fputs_encoded(fmt::format(frm, std::forward<T>(args)...),
::stdout);
stdout);
}
/**