diff libpurple/protocols/msn/slpcall.c @ 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 d9ca3798faa5
children 555862567b38
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;