comparison 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
comparison
equal deleted inserted replaced
31309:393e127b3d83 31310:c209701a3152
1152 else if (slpmsg->header->flags == P2P_ACK) 1152 else if (slpmsg->header->flags == P2P_ACK)
1153 { 1153 {
1154 /* Acknowledgement of previous message. Don't do anything currently. */ 1154 /* Acknowledgement of previous message. Don't do anything currently. */
1155 } 1155 }
1156 else 1156 else
1157 purple_debug_warning("msn", "Unprocessed SLP message with flags 0x%08lx\n", 1157 purple_debug_warning("msn", "Unprocessed SLP message with flags 0x%04x\n",
1158 slpmsg->header->flags); 1158 slpmsg->header->flags);
1159 1159
1160 return slpcall; 1160 return slpcall;
1161 } 1161 }