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
commit e2be29fde6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

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);
}
/**