summaryrefslogtreecommitdiffstats
path: root/src/common/logging/log.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-18 23:33:45 +0200
committerLioncash <mathew1800@gmail.com>2018-07-18 23:46:17 +0200
commitf5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9 (patch)
tree113f5e17cd87b43b1f3840ac3cb75c36759bb431 /src/common/logging/log.h
parentMerge pull request #681 from lioncash/const (diff)
downloadyuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.tar
yuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.tar.gz
yuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.tar.bz2
yuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.tar.lz
yuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.tar.xz
yuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.tar.zst
yuzu-f5d7706ca18109a0400fd4d3d8eaf4e2c22b5bb9.zip
Diffstat (limited to '')
-rw-r--r--src/common/logging/log.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/logging/log.h b/src/common/logging/log.h
index e96c90e16..e7115933f 100644
--- a/src/common/logging/log.h
+++ b/src/common/logging/log.h
@@ -103,7 +103,7 @@ template <typename... Args>
void FmtLogMessage(Class log_class, Level log_level, const char* filename, unsigned int line_num,
const char* function, const char* format, const Args&... args) {
FmtLogMessageImpl(log_class, log_level, filename, line_num, function, format,
- fmt::make_args(args...));
+ fmt::make_format_args(args...));
}
} // namespace Log