pidgin: 8c0a13aa: Fix some warnings in some sometimes-comm...

qulogic at pidgin.im qulogic at pidgin.im
Thu Feb 5 01:25:39 EST 2009


-----------------------------------------------------------------
Revision: 8c0a13aacb02b1142a4fc384273860413f9f1559
Ancestor: 0bb02399ead9501a3e7951cfba2e8e8350fe917c
Author: qulogic at pidgin.im
Date: 2009-02-05T04:23:14
Branch: im.pidgin.pidgin
URL: http://d.pidgin.im/viewmtn/revision/info/8c0a13aacb02b1142a4fc384273860413f9f1559

Modified files:
        libpurple/protocols/msn/msg.c

ChangeLog: 

Fix some warnings in some sometimes-commented-out debug messages.

-------------- next part --------------
============================================================
--- libpurple/protocols/msn/msg.c	cd2ad54ef35bb8cbc5b6b7806b865747160185c9
+++ libpurple/protocols/msn/msg.c	9f8382b8b397eef9a466728a27a658f9aeef9c8f
@@ -80,7 +80,7 @@ msn_message_ref(MsnMessage *msg)
 	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 @@ msn_message_unref(MsnMessage *msg)
 	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)


More information about the Commits mailing list