cpw.darkrain42.xmpp.iq-handlers: b04e8bdc: Remove a "suggested parenthes around ass...
paul at darkrain42.org
paul at darkrain42.org
Tue Feb 10 03:40:33 EST 2009
-----------------------------------------------------------------
Revision: b04e8bdc99bebce19e9d8a5df5d7397cffcf2988
Ancestor: baaa6148419d57d9da8fbdb7e6d4ff4ce2fb2fff
Author: paul at darkrain42.org
Date: 2009-02-10T08:27:30
Branch: im.pidgin.cpw.darkrain42.xmpp.iq-handlers
URL: http://d.pidgin.im/viewmtn/revision/info/b04e8bdc99bebce19e9d8a5df5d7397cffcf2988
Modified files:
libpurple/protocols/jabber/iq.c
ChangeLog:
Remove a "suggested parenthes around assignment" warning
-------------- next part --------------
============================================================
--- libpurple/protocols/jabber/iq.c 6489c3efcd44261866bcbfa0c15c168ef913108a
+++ libpurple/protocols/jabber/iq.c 7241015d2ae7ad1d36590f01d09424dce0c4dc97
@@ -352,7 +352,7 @@ void jabber_iq_parse(JabberStream *js, x
/* First, lets see if a special callback got registered */
if(type == JABBER_IQ_RESULT || type == JABBER_IQ_ERROR) {
- if(jcd = g_hash_table_lookup(js->iq_callbacks, id)) {
+ if((jcd = g_hash_table_lookup(js->iq_callbacks, id))) {
jcd->callback(js, packet, jcd->data);
jabber_iq_remove_callback_by_id(js, id);
return;
More information about the Commits
mailing list