diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 22:34:20 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-10-02 22:34:20 +0000 |
commit | fbfb380eb53d46beaed777a7568667d3e32cc857 (patch) | |
tree | a671126d97066c52a71e30ea67ae3340150e918d | |
parent | a9838c50c703252e90008f70dc665c26c6a8beeb (diff) |
Compile error, missing semicolon in header.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1367 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | include/services.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/services.h b/include/services.h index db2ec93bc..c45ac65b0 100644 --- a/include/services.h +++ b/include/services.h @@ -1384,7 +1384,7 @@ class IRCDProto { send_cmd(UseTS6 ? bi->uid : bi->nick, "PRIVMSG %s%s :%s", ircd->globaltldprefix, dest, msg); } virtual void SendBotOp(const char *, const char *) = 0; - virtual void SendQuit(BotInfo *bi, const char *fmt, ...) + virtual void SendQuit(BotInfo *bi, const char *fmt, ...); virtual void SendQuit(const char *source, const char *fmt, ...) { va_list args; |