# HG changeset patch # User Elliott Sales de Andrade # Date 1233807794 0 # Node ID 575b2b9f3ac9253428e2f9586819f63be0a0884e # Parent b0c75121cf66f89fb5484892a4d47c45ad59db9c Fix some warnings in some sometimes-commented-out debug messages. diff -r b0c75121cf66 -r 575b2b9f3ac9 libpurple/protocols/msn/msg.c --- a/libpurple/protocols/msn/msg.c Wed Feb 04 05:15:49 2009 +0000 +++ b/libpurple/protocols/msn/msg.c Thu Feb 05 04:23:14 2009 +0000 @@ -80,7 +80,7 @@ msg->ref_count++; #ifdef MSN_DEBUG_MSG - purple_debug_info("msn", "message ref (%p)[%d]\n", msg, msg->ref_count); + purple_debug_info("msn", "message ref (%p)[%" G_GSIZE_FORMAT "]\n", msg, msg->ref_count); #endif return msg; @@ -95,7 +95,7 @@ msg->ref_count--; #ifdef MSN_DEBUG_MSG - purple_debug_info("msn", "message unref (%p)[%d]\n", msg, msg->ref_count); + purple_debug_info("msn", "message unref (%p)[%" G_GSIZE_FORMAT "]\n", msg, msg->ref_count); #endif if (msg->ref_count == 0)