mirror of
https://github.com/anope/anope.git
synced 2026-07-06 11:13:13 +02:00
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
This commit is contained in:
@@ -35,7 +35,7 @@ class BSFantasy : public Module
|
||||
/**
|
||||
* Unload the module
|
||||
**/
|
||||
void AnopeFini(void)
|
||||
void AnopeFini()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@@ -36,7 +36,7 @@ class BSFantasySeen : public Module
|
||||
/**
|
||||
* Unload the module
|
||||
**/
|
||||
void AnopeFini(void)
|
||||
void AnopeFini()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
+1
-1
@@ -40,7 +40,7 @@ class MSRSend : public Module
|
||||
/**
|
||||
* Unload the module
|
||||
**/
|
||||
void AnopeFini(void)
|
||||
void AnopeFini()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
@@ -97,7 +97,7 @@ int do_chankill(User * u)
|
||||
if (is_oper(cu->user)) {
|
||||
continue;
|
||||
}
|
||||
(void) strncpy(mask, "*@", 3); /* Use *@" for the akill's, */
|
||||
strncpy(mask, "*@", 3); /* Use *@" for the akill's, */
|
||||
strncat(mask, cu->user->host, HOSTMAX);
|
||||
add_akill(NULL, mask, s_OperServ, expires, reason);
|
||||
check_akill(cu->user->nick, cu->user->username,
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
#ifdef _WIN32
|
||||
extern MDE time_t DefContimer;
|
||||
extern MDE void runDefCon(void);
|
||||
extern MDE void runDefCon();
|
||||
#endif
|
||||
int do_defcon(User * u);
|
||||
void defcon_sendlvls(User * u);
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
Command *c;
|
||||
|
||||
void myOperServHelp(User * u);
|
||||
int load_config(void);
|
||||
int load_config();
|
||||
int reload_config(int argc, char **argv);
|
||||
|
||||
class OSLogonNews : public Module
|
||||
|
||||
@@ -18,7 +18,7 @@
|
||||
Command *c;
|
||||
|
||||
void myOperServHelp(User * u);
|
||||
int load_config(void);
|
||||
int load_config();
|
||||
int reload_config(int argc, char **argv);
|
||||
|
||||
class OSOperNews : public Module
|
||||
|
||||
@@ -17,7 +17,7 @@
|
||||
|
||||
#ifdef _WIN32
|
||||
/* OperServ restart needs access to this if were gonna avoid sending ourself a signal */
|
||||
extern MDE void do_restart_services(void);
|
||||
extern MDE void do_restart_services();
|
||||
#endif
|
||||
|
||||
int do_restart(User * u);
|
||||
|
||||
+1
-1
@@ -42,7 +42,7 @@ class OSUMode : public Module
|
||||
/**
|
||||
* Unload the module
|
||||
**/
|
||||
void AnopeFini(void)
|
||||
void AnopeFini()
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user