summaryrefslogtreecommitdiff
path: root/src/channels.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/channels.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/channels.c')
-rw-r--r--src/channels.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/channels.c b/src/channels.c
index 392e155f5..f04b301b0 100644
--- a/src/channels.c
+++ b/src/channels.c
@@ -393,7 +393,7 @@ Channel *findchan(const char *chan)
static Channel *current;
static int next_index;
-Channel *firstchan(void)
+Channel *firstchan()
{
next_index = 0;
while (next_index < 1024 && current == NULL)
@@ -404,7 +404,7 @@ Channel *firstchan(void)
return current;
}
-Channel *nextchan(void)
+Channel *nextchan()
{
if (current)
current = current->next;
@@ -1908,7 +1908,7 @@ void do_mass_mode(char *modes)
/*************************************************************************/
-void restore_unsynced_topics(void)
+void restore_unsynced_topics()
{
Channel *c;