diff libpurple/protocols/yahoo/yahoochat.c @ 22568:c65c96e231b5

Printf warning fixes.
author Daniel Atallah <daniel.atallah@gmail.com>
date Thu, 27 Mar 2008 02:09:51 +0000
parents 4cc1dfbc499b
children caa533b62902
line wrap: on
line diff
--- a/libpurple/protocols/yahoo/yahoochat.c	Thu Mar 27 00:48:54 2008 +0000
+++ b/libpurple/protocols/yahoo/yahoochat.c	Thu Mar 27 02:09:51 2008 +0000
@@ -565,7 +565,7 @@
 		for (l = account->deny; l != NULL; l = l->next) {
 			for (roomies = members; roomies; roomies = roomies->next) {
 				if (!purple_utf8_strcasecmp((char *)l->data, roomies->data)) {
-					purple_debug_info("yahoo", "Ignoring room member %s in room %s\n" , roomies->data, room ? room : "");
+					purple_debug_info("yahoo", "Ignoring room member %s in room %s\n" , (char *)roomies->data, room ? room : "");
 					purple_conv_chat_ignore(PURPLE_CONV_CHAT(c),roomies->data);
 					ops->chat_update_user(c, roomies->data);
 				}