# HG changeset patch # User Paul Aurich # Date 1234254450 0 # Node ID ba2b63988b3c9b1c14596346e0821eca47f0517e # Parent 43c41aee8fcb50a2c23879b9dcb7a7fc472ef970 Remove a "suggested parenthes around assignment" warning diff -r 43c41aee8fcb -r ba2b63988b3c libpurple/protocols/jabber/iq.c --- a/libpurple/protocols/jabber/iq.c Tue Feb 10 06:15:27 2009 +0000 +++ b/libpurple/protocols/jabber/iq.c Tue Feb 10 08:27:30 2009 +0000 @@ -352,7 +352,7 @@ /* 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;