mirror of
https://github.com/anope/anope.git
synced 2026-07-01 09:36:36 +02:00
Fix a format-extra-args warning on some versions on GCC.
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user