diff src/util.c @ 2397:520257562955

[gaim-migrate @ 2410] changing aim_users to GSList. this works better for me since in gaim-core i had them as a GSList. besides, it saves memory. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Sun, 30 Sep 2001 19:58:48 +0000
parents 569ae9f2bb89
children 35c23df11d16
line wrap: on
line diff
--- a/src/util.c	Sun Sep 30 19:48:44 2001 +0000
+++ b/src/util.c	Sun Sep 30 19:58:48 2001 +0000
@@ -640,7 +640,7 @@
 struct aim_user *find_user(const char *name, int protocol)
 {
 	char *who = g_strdup(normalize(name));
-	GList *usr = aim_users;
+	GSList *usr = aim_users;
 	struct aim_user *u;
 
 	while (usr) {