diff options
| author | 2007-10-23 20:45:09 +0000 | |
|---|---|---|
| committer | 2007-10-23 20:45:09 +0000 | |
| commit | 352eb2b29f2e3f759ef74344b4807b1b6dff8e59 (patch) | |
| tree | 840a98a68cdc20bfe032320f39342bf0c6918c18 /src/commands/cmd_ping.cpp | |
| parent | More pedantic safety (diff) | |
| download | inspircd++-352eb2b29f2e3f759ef74344b4807b1b6dff8e59.tar.gz inspircd++-352eb2b29f2e3f759ef74344b4807b1b6dff8e59.tar.bz2 inspircd++-352eb2b29f2e3f759ef74344b4807b1b6dff8e59.zip | |
All the core is now pedantic safe!
NOTE: I changed ModeHandler removing a redundant param. Devs, if you find stuff that doesnt compile, change AddMode(handler, 'l') to AddMode(handler); and it will :p
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8319 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_ping.cpp')
| -rw-r--r-- | src/commands/cmd_ping.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_ping.cpp b/src/commands/cmd_ping.cpp index fb0b03829..a4ed9e8f1 100644 --- a/src/commands/cmd_ping.cpp +++ b/src/commands/cmd_ping.cpp @@ -19,7 +19,7 @@ extern "C" DllExport Command* init_command(InspIRCd* Instance) return new CommandPing(Instance); } -CmdResult CommandPing::Handle (const char** parameters, int pcnt, User *user) +CmdResult CommandPing::Handle (const char** parameters, int, User *user) { user->WriteServ("PONG %s :%s",ServerInstance->Config->ServerName,parameters[0]); return CMD_SUCCESS; |
