diff options
author | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-28 16:16:53 +0000 |
---|---|---|
committer | rburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-28 16:16:53 +0000 |
commit | be278d2bb8f67e75c4bb2e5a62f217fe79dc66e3 (patch) | |
tree | 423972d21eee308fc8e09315f029e1310bdfda69 /src/botserv.c | |
parent | 72e09121b253e285f89a0e04a0d6de32b9aa3121 (diff) |
Remove (void) args, these just make things ugly.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1811 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/botserv.c')
-rw-r--r-- | src/botserv.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/botserv.c b/src/botserv.c index 6b0a1bbf4..9eddfe685 100644 --- a/src/botserv.c +++ b/src/botserv.c @@ -29,11 +29,11 @@ static UserData *get_user_data(Channel * c, User * u); static void check_ban(ChannelInfo * ci, User * u, int ttbtype); static void bot_kick(ChannelInfo * ci, User * u, int message, ...); -E void moduleAddBotServCmds(void); +E void moduleAddBotServCmds(); /*************************************************************************/ /* *INDENT-OFF* */ -void moduleAddBotServCmds(void) { +void moduleAddBotServCmds() { ModuleManager::LoadModuleList(BotServCoreNumber, BotServCoreModules); } /* *INDENT-ON* */ @@ -68,7 +68,7 @@ void get_botserv_stats(long *nrec, long *memuse) /* BotServ initialization. */ -void bs_init(void) +void bs_init() { if (s_BotServ) { moduleAddBotServCmds(); @@ -442,7 +442,7 @@ void botchanmsgs(User * u, ChannelInfo * ci, char *buf) } \ } while (0) -void load_bs_dbase(void) +void load_bs_dbase() { dbFILE *f; int c, ver; @@ -498,7 +498,7 @@ void load_bs_dbase(void) } \ } while (0) -void save_bs_dbase(void) +void save_bs_dbase() { dbFILE *f; BotInfo *bi; |