]> git.0d.be Git - empathy.git/commitdiff
empathy-tp-chat.c: fix shadow declaration
authorGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Wed, 21 Oct 2009 14:41:01 +0000 (15:41 +0100)
committerGuillaume Desmottes <guillaume.desmottes@collabora.co.uk>
Wed, 21 Oct 2009 14:46:28 +0000 (15:46 +0100)
libempathy/empathy-tp-chat.c

index 28b97076dfff5121461450cc24aa1ca6066a738a..09077538a95bd77e2a7e164d007bba0e24bc66dc 100644 (file)
@@ -882,7 +882,7 @@ tp_chat_got_added_contacts_cb (EmpathyTpContactFactory *factory,
 static EmpathyContact *
 chat_lookup_contact (EmpathyTpChat *chat,
                     TpHandle       handle,
-                    gboolean       remove)
+                    gboolean       remove_)
 {
        EmpathyTpChatPriv *priv = GET_PRIV (chat);
        GList *l;
@@ -894,7 +894,7 @@ chat_lookup_contact (EmpathyTpChat *chat,
                        continue;
                }
 
-               if (remove) {
+               if (remove_) {
                        /* Caller takes the reference. */
                        priv->members = g_list_delete_link (priv->members, l);
                } else {