1
0
mirror of https://github.com/anope/anope.git synced 2026-07-07 11:03:13 +02:00

Fix various format string issues.

This commit is contained in:
Sadie Powell
2024-01-08 13:06:23 +00:00
parent 5db79c1e24
commit f083795c79
22 changed files with 66 additions and 55 deletions
+1 -1
View File
@@ -157,7 +157,7 @@ public:
time_t send_delay = Config->GetModule("memoserv")->Get<time_t>("senddelay");
if (Config->GetModule(this->owner)->Get<bool>("memooper") && send_delay > 0 && u && u->lastmemosend + send_delay > Anope::CurTime)
{
source.Reply(_("Please wait %d seconds before requesting a new vHost."), send_delay);
source.Reply(_("Please wait %lu seconds before requesting a new vHost."), (unsigned long)send_delay);
u->lastmemosend = Anope::CurTime;
return;
}