Fix log message

This commit is contained in:
Megamouse 2023-05-18 00:29:51 +02:00
parent c70338a9a9
commit f5c48a00b4

View File

@ -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;
}