# HG changeset patch # User masca@cpw.pidgin.im # Date 1281053413 0 # Node ID c209701a315246b6e6495cdaecd18aafe4f149f8 # Parent 393e127b3d837adeea77bcf568086bf375a18afe Fix a warning about the size of the flags and avoi displaying trialing 0 that will not be used. diff -r 393e127b3d83 -r c209701a3152 libpurple/protocols/msn/slpcall.c --- 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;