# HG changeset patch # User Stu Tomlinson # Date 1205719951 0 # Node ID 0c2dd59f91d1cce47a612bf27757fcf94daea08a # Parent 633eabc7eff4669738e9826e57d1e4864a2d5e98 Fix a printf argument order bug uncovered by the fantastic G_GNUC_PRINTF things Mark added to our debug stuff. diff -r 633eabc7eff4 -r 0c2dd59f91d1 libpurple/protocols/qq/send_core.c --- a/libpurple/protocols/qq/send_core.c Mon Mar 17 01:56:29 2008 +0000 +++ b/libpurple/protocols/qq/send_core.c Mon Mar 17 02:12:31 2008 +0000 @@ -87,7 +87,7 @@ if (len > MAX_PACKET_SIZE) { purple_debug(PURPLE_DEBUG_ERROR, "QQ", "xxx [%05d] %s, %d bytes is too large, do not send\n", - qq_get_cmd_desc(cmd), qd->send_seq, len); + qd->send_seq, qq_get_cmd_desc(cmd), len); return -1; } else { /* I update the len for TCP packet */ cursor = buf;