diff options
author | Sadie Powell <sadie@witchery.services> | 2024-01-08 13:06:23 +0000 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2024-01-08 13:11:50 +0000 |
commit | f083795c79fc062951d0253b4babf7e3b48c6ccb (patch) | |
tree | d40d77a317f31e7d8acb6db3df85dbd3e3efbda9 /modules/commands/hs_request.cpp | |
parent | 5db79c1e242d4c06d1aeb2b09f99b8254b7fb5de (diff) |
Fix various format string issues.
Diffstat (limited to 'modules/commands/hs_request.cpp')
-rw-r--r-- | modules/commands/hs_request.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/commands/hs_request.cpp b/modules/commands/hs_request.cpp index f207d6966..8e63f2b9d 100644 --- a/modules/commands/hs_request.cpp +++ b/modules/commands/hs_request.cpp @@ -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; } |