From f083795c79fc062951d0253b4babf7e3b48c6ccb Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Mon, 8 Jan 2024 13:06:23 +0000 Subject: Fix various format string issues. --- modules/commands/ms_rsend.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/commands/ms_rsend.cpp') diff --git a/modules/commands/ms_rsend.cpp b/modules/commands/ms_rsend.cpp index c3be36838..854b4e2be 100644 --- a/modules/commands/ms_rsend.cpp +++ b/modules/commands/ms_rsend.cpp @@ -55,7 +55,7 @@ public: if (result == MemoServService::MEMO_INVALID_TARGET) source.Reply(_("\002%s\002 is not a registered unforbidden nick or channel."), nick.c_str()); else if (result == MemoServService::MEMO_TOO_FAST) - source.Reply(_("Please wait %d seconds before using the %s command again."), Config->GetModule("memoserv")->Get("senddelay"), source.command.c_str()); + source.Reply(_("Please wait %lu seconds before using the %s command again."), Config->GetModule("memoserv")->Get("senddelay"), source.command.c_str()); else if (result == MemoServService::MEMO_TARGET_FULL) source.Reply(_("Sorry, %s currently has too many memos and cannot receive more."), nick.c_str()); else -- cgit