changeset 31310:c209701a3152

Fix a warning about the size of the flags and avoi displaying trialing 0 that will not be used.
author masca@cpw.pidgin.im
date Fri, 06 Aug 2010 00:10:13 +0000
parents 393e127b3d83
children 4b1eecab50e8
files libpurple/protocols/msn/slpcall.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libpurple/protocols/msn/slpcall.c	Fri Aug 06 00:08:23 2010 +0000
+++ b/libpurple/protocols/msn/slpcall.c	Fri Aug 06 00:10:13 2010 +0000
@@ -1154,7 +1154,7 @@
 		/* Acknowledgement of previous message. Don't do anything currently. */
 	}
 	else
-		purple_debug_warning("msn", "Unprocessed SLP message with flags 0x%08lx\n",
+		purple_debug_warning("msn", "Unprocessed SLP message with flags 0x%04x\n",
 		                     slpmsg->header->flags);
 
 	return slpcall;