comparison src/protocols/msn/session.c @ 10112:1a91e814e9d8

[gaim-migrate @ 11145] it looks like the rest of this was 64-bit stuff too committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Mon, 18 Oct 2004 05:40:02 +0000
parents 86a6d78b070b
children ecf3ce2e2ab1
comparison
equal deleted inserted replaced
10111:8490f2e292a6 10112:1a91e814e9d8
231 gboolean found = FALSE; 231 gboolean found = FALSE;
232 GList *l2; 232 GList *l2;
233 233
234 group_name = 234 group_name =
235 msn_userlist_find_group_name(local_user->userlist, 235 msn_userlist_find_group_name(local_user->userlist,
236 (int)l->data); 236 GPOINTER_TO_INT(l->data));
237 237
238 gid = msn_userlist_find_group_id(remote_user->userlist, 238 gid = msn_userlist_find_group_id(remote_user->userlist,
239 group_name); 239 group_name);
240 240
241 for (l2 = remote_user->group_ids; l2 != NULL; l2 = l2->next) 241 for (l2 = remote_user->group_ids; l2 != NULL; l2 = l2->next)
242 { 242 {
243 if ((int)l2->data == gid) 243 if (GPOINTER_TO_INT(l2->data) == gid)
244 { 244 {
245 found = TRUE; 245 found = TRUE;
246 break; 246 break;
247 } 247 }
248 } 248 }