summaryrefslogtreecommitdiff
path: root/src/modules/hs_request.c
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-28 16:16:53 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2008-11-28 16:16:53 +0000
commitbe278d2bb8f67e75c4bb2e5a62f217fe79dc66e3 (patch)
tree423972d21eee308fc8e09315f029e1310bdfda69 /src/modules/hs_request.c
parent72e09121b253e285f89a0e04a0d6de32b9aa3121 (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/modules/hs_request.c')
-rw-r--r--src/modules/hs_request.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/modules/hs_request.c b/src/modules/hs_request.c
index 5aead1a4f..c908db919 100644
--- a/src/modules/hs_request.c
+++ b/src/modules/hs_request.c
@@ -73,13 +73,13 @@ void show_list(User * u);
int hs_do_waiting(User * u);
int ns_do_drop(User * u);
-void hsreq_save_db(void);
-void hsreq_load_db(void);
+void hsreq_save_db();
+void hsreq_load_db();
int hsreqevt_db_saving(int argc, char **argv);
int hsreqevt_db_backup(int argc, char **argv);
-void my_load_config(void);
-void my_add_languages(void);
+void my_load_config();
+void my_add_languages();
HostCore *hs_request_head;
@@ -830,7 +830,7 @@ void hs_help(User * u)
if (is_host_setter(u))
me->NoticeLang(s_HostServ, u, LNG_HELP_SETTER);
}
-void hsreq_load_db(void)
+void hsreq_load_db()
{
FILE *fp;
const char *filename;
@@ -889,7 +889,7 @@ void hsreq_load_db(void)
alog("[hs_request] Succesfully loaded database");
}
-void hsreq_save_db(void)
+void hsreq_save_db()
{
FILE *fp;
const char *filename;
@@ -942,7 +942,7 @@ int hsreqevt_db_backup(int argc, char **argv)
return MOD_CONT;
}
-void my_load_config(void)
+void my_load_config()
{
ConfigReader config;
HSRequestMemoUser = config.ReadFlag("hs_request", "memouser", "no", 0);