summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorSadie Powell <sadie@witchery.services>2024-03-15 12:21:48 +0000
committerSadie Powell <sadie@witchery.services>2024-03-15 12:22:22 +0000
commitd996c3aa8fccb032332aa8e2ea12d07127cae969 (patch)
treec52dc11930735f93dece1387f126ab18640836e0 /modules
parentac6e8c617d884e885b873be38f156806974cc43c (diff)
Fix a format-extra-args warning on some versions on GCC.
Diffstat (limited to 'modules')
-rw-r--r--modules/chanserv/cs_xop.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/chanserv/cs_xop.cpp b/modules/chanserv/cs_xop.cpp
index b1791e5fe..19fbf0c37 100644
--- a/modules/chanserv/cs_xop.cpp
+++ b/modules/chanserv/cs_xop.cpp
@@ -116,7 +116,7 @@ private:
if (Anope::ReadOnly)
{
- source.Reply(READ_ONLY_MODE, source.command.c_str());
+ source.Reply(READ_ONLY_MODE);
return;
}
@@ -246,7 +246,7 @@ private:
if (Anope::ReadOnly)
{
- source.Reply(READ_ONLY_MODE, source.command.c_str());
+ source.Reply(READ_ONLY_MODE);
return;
}
@@ -464,7 +464,7 @@ private:
{
if (Anope::ReadOnly)
{
- source.Reply(READ_ONLY_MODE, source.command.c_str());
+ source.Reply(READ_ONLY_MODE);
return;
}