1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 15: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:
rburchell
2008-11-28 16:16:53 +00:00
parent 72e09121b2
commit be278d2bb8
57 changed files with 209 additions and 209 deletions
+4 -4
View File
@@ -397,7 +397,7 @@ User *finduser(const char *nick)
static User *current;
static int next_index;
User *firstuser(void)
User *firstuser()
{
next_index = 0;
current = NULL;
@@ -409,7 +409,7 @@ User *firstuser(void)
return current;
}
User *nextuser(void)
User *nextuser()
{
if (current)
current = current->next;
@@ -443,7 +443,7 @@ User *find_byuid(const char *uid)
static User *current_uid;
static int next_index_uid;
User *first_uid(void)
User *first_uid()
{
next_index_uid = 0;
current_uid = NULL;
@@ -458,7 +458,7 @@ User *first_uid(void)
return current_uid;
}
User *next_uid(void)
User *next_uid()
{
if (current_uid)
current_uid = current_uid->next;