[empathy] empathy-tp-chat.c: fix shadow declaration



commit a94bffadcc27ac011a8b5d8472d907f23c129955
Author: Guillaume Desmottes <guillaume desmottes collabora co uk>
Date:   Wed Oct 21 15:41:01 2009 +0100

    empathy-tp-chat.c: fix shadow declaration

 libempathy/empathy-tp-chat.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/libempathy/empathy-tp-chat.c b/libempathy/empathy-tp-chat.c
index 28b9707..0907753 100644
--- a/libempathy/empathy-tp-chat.c
+++ b/libempathy/empathy-tp-chat.c
@@ -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 {



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]