summaryrefslogtreecommitdiff
path: root/include/commands/cmd_quit.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/commands/cmd_quit.h')
-rw-r--r--include/commands/cmd_quit.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/commands/cmd_quit.h b/include/commands/cmd_quit.h
index 891b2f0a3..937836e81 100644
--- a/include/commands/cmd_quit.h
+++ b/include/commands/cmd_quit.h
@@ -31,7 +31,7 @@
class cmd_quit : public command_t
{
public:
- cmd_quit () : command_t("QUIT",0,0) { syntax = "[<message>]"; }
+ cmd_quit (InspIRCd* Instance) : command_t(Instance,"QUIT",0,0) { syntax = "[<message>]"; }
void Handle(const char** parameters, int pcnt, userrec *user);
};