Skip to content

Commit

Permalink
Merge pull request #2677 from MatthewGentoo/bug-928361
Browse files Browse the repository at this point in the history
mu-utils: Fix build with musl
  • Loading branch information
djcb committed Apr 1, 2024
2 parents 770a239 + 45b4f60 commit e2be29f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/mu-utils.hh
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

/**
Expand Down

0 comments on commit e2be29f

Please sign in to comment.