diff options
author | Matthew Bauer <matthew.bauer@obsidian.systems> | 2020-06-25 16:27:00 -0400 |
---|---|---|
committer | John Ericson <John.Ericson@Obsidian.Systems> | 2020-06-29 20:34:26 +0000 |
commit | 88cf6ffce3c01f4f1c50250ef46c0d7bf23f41c7 (patch) | |
tree | d90ba4c36fe87fa71e0719fd1f1169ae2bec6f00 /src/libutil/logging.hh | |
parent | 58bc3b65789a6c1216abb0dfb4f553b2a6b7f479 (diff) |
Rename logging->stdout to logging->stdout_
musl doesn't like this identifier
Diffstat (limited to 'src/libutil/logging.hh')
-rw-r--r-- | src/libutil/logging.hh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libutil/logging.hh b/src/libutil/logging.hh index b1583eced..46deb89f7 100644 --- a/src/libutil/logging.hh +++ b/src/libutil/logging.hh @@ -87,7 +87,7 @@ public: virtual void writeToStdout(std::string_view s); template<typename... Args> - inline void stdout(const std::string & fs, const Args & ... args) + inline void stdout_(const std::string & fs, const Args & ... args) { boost::format f(fs); formatHelper(f, args...); |