summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 22:34:20 +0000
committerRobin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864>2008-10-02 22:34:20 +0000
commitfbfb380eb53d46beaed777a7568667d3e32cc857 (patch)
treea671126d97066c52a71e30ea67ae3340150e918d
parenta9838c50c703252e90008f70dc665c26c6a8beeb (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.h2
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;