From f5c48a00b4f0c0d35b42465563b4bf7a1555b0a7 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Thu, 18 May 2023 00:29:51 +0200 Subject: [PATCH] Fix log message --- Utilities/Config.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Utilities/Config.cpp b/Utilities/Config.cpp index d2cf920095..b8e171b8e4 100644 --- a/Utilities/Config.cpp +++ b/Utilities/Config.cpp @@ -61,7 +61,7 @@ bool try_to_int64(s64* out, std::string_view value, s64 min, s64 max) { if (value.empty()) { - if (out) cfg_log.error("cfg::try_to_uint64(): called with an empty string"); + if (out) cfg_log.error("cfg::try_to_int64(): called with an empty string"); return false; }