comparison src/blist.c @ 5776:147f4c25af15

[gaim-migrate @ 6201] compile fixes and cleanups committer: Tailor Script <tailor@pidgin.im>
author Nathan Walp <nwalp@pidgin.im>
date Fri, 06 Jun 2003 16:53:22 +0000
parents 666b04f93c55
children 082982a4acbd
comparison
equal deleted inserted replaced
5775:171fdd5493b9 5776:147f4c25af15
759 759
760 while (group) { 760 while (group) {
761 hb.name = normalize(n); 761 hb.name = normalize(n);
762 hb.account = account; 762 hb.account = account;
763 hb.group = group; 763 hb.group = group;
764 if (buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb)) 764 if ((buddy = g_hash_table_lookup(gaimbuddylist->buddies, &hb)) != NULL)
765 return buddy; 765 return buddy;
766 group = ((GaimBlistNode*)group)->next; 766 group = ((GaimBlistNode*)group)->next;
767 } 767 }
768 return NULL; 768 return NULL;
769 } 769 }