comparison libpurple/protocols/msn/switchboard.c @ 22798:05cb3f04c01e

This cleans up a bunch of warnings that stem from the fact that size_t and gsize have different sizes on different platforms.
author John Bailey <rekkanoryo@rekkanoryo.org>
date Sat, 03 May 2008 02:12:26 +0000
parents 6aa076a2ea6f
children 455a8264e06e 1dd0e007514d
comparison
equal deleted inserted replaced
22796:5e6b42e77fb7 22798:05cb3f04c01e
542 #ifdef MSN_DEBUG_SB 542 #ifdef MSN_DEBUG_SB
543 purple_debug_info("MSNP14","SB length:{%d}",payload_len); 543 purple_debug_info("MSNP14","SB length:{%d}",payload_len);
544 msn_message_show_readable(msg, "SB SEND", FALSE); 544 msn_message_show_readable(msg, "SB SEND", FALSE);
545 #endif 545 #endif
546 546
547 trans = msn_transaction_new(cmdproc, "MSG", "%c %d", 547 trans = msn_transaction_new(cmdproc, "MSG", "%c %" G_GSIZE_FORMAT,
548 msn_message_get_flag(msg), payload_len); 548 msn_message_get_flag(msg), payload_len);
549 549
550 /* Data for callbacks */ 550 /* Data for callbacks */
551 msn_transaction_set_data(trans, msg); 551 msn_transaction_set_data(trans, msg);
552 552