changeset 2433:cac432940fb8

[gaim-migrate @ 2446] fix compile errors on non-gcc compilers. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Fri, 05 Oct 2001 20:31:14 +0000
parents 2a4a50036e25
children 20d1c2c945c9
files src/buddy.c
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/src/buddy.c	Fri Oct 05 20:01:22 2001 +0000
+++ b/src/buddy.c	Fri Oct 05 20:31:14 2001 +0000
@@ -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 {