From ee6ce2064e3abf96eb5baf9b09b6a23148a0c31f Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Wed, 25 May 2022 10:11:32 +0100 Subject: Fix some compiler warnings on i386. --- src/configparser.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/configparser.cpp') diff --git a/src/configparser.cpp b/src/configparser.cpp index e6de3942a..96965ddc8 100644 --- a/src/configparser.cpp +++ b/src/configparser.cpp @@ -607,7 +607,7 @@ std::string ConfigTag::getString(const std::string& key, const std::string& def, if (res.length() < minlen || res.length() > maxlen) { ServerInstance->Logs->Log("CONFIG", LOG_DEFAULT, "WARNING: The length of <%s:%s> is not between %ld and %ld; value set to %s.", - tag.c_str(), key.c_str(), minlen, maxlen, def.c_str()); + tag.c_str(), key.c_str(), (unsigned long)minlen, (unsigned long)maxlen, def.c_str()); return def; } return res; -- cgit v1.3.1-10-gc9f91