From: Eric W. <war...@us...> - 2001-10-05 20:31:17
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv23906 Modified Files: buddy.c Log Message: fix compile errors on non-gcc compilers. Index: buddy.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/buddy.c,v retrieving revision 1.248 retrieving revision 1.249 diff -u -d -r1.248 -r1.249 --- buddy.c 2001/09/29 23:06:30 1.248 +++ buddy.c 2001/10/05 20:31:14 1.249 @@ -164,7 +164,7 @@ g_free(bs); } if ((bs = find_buddy_show(new_gs, b->name)) == NULL) { - if (*g->gc->prpl->list_icon) { + if (g->gc->prpl->list_icon) { bs = new_buddy_show(new_gs, b, (*g->gc->prpl->list_icon)(b->uc)); } else { @@ -217,7 +217,7 @@ g_free(bs->name); g_free(bs); } - if (*g->gc->prpl->list_icon) { + if (g->gc->prpl->list_icon) { bs = new_buddy_show(new_gs, b, (*g->gc->prpl->list_icon)(b->uc)); } else { |