[evolution-data-server] ECalBackendGroupwise: Fix dead nested assignment.



commit 1cc1e17a00c2f86f97254edefa64045767815fd5
Author: Matthew Barnes <mbarnes redhat com>
Date:   Sun Jan 30 17:44:46 2011 -0500

    ECalBackendGroupwise: Fix dead nested assignment.

 .../backends/groupwise/e-cal-backend-groupwise.c   |    3 +--
 1 files changed, 1 insertions(+), 2 deletions(-)
---
diff --git a/calendar/backends/groupwise/e-cal-backend-groupwise.c b/calendar/backends/groupwise/e-cal-backend-groupwise.c
index 3b32c35..db5282c 100644
--- a/calendar/backends/groupwise/e-cal-backend-groupwise.c
+++ b/calendar/backends/groupwise/e-cal-backend-groupwise.c
@@ -487,14 +487,13 @@ get_deltas (gpointer handle)
 		gchar *cache_comp_str = NULL, *modif_comp_str, *rid = NULL;
 		icaltimetype *tt = NULL, *c_tt = NULL;
 		const gchar *uid;
-		gint r_key;
 
 		item = E_GW_ITEM (item_list->data);
 		modified_comp = e_gw_item_to_cal_component (item, cbgw);
 		if (!modified_comp) {
 			continue;
 		}
-		if ((r_key = e_gw_item_get_recurrence_key (item)) != 0)
+		if (e_gw_item_get_recurrence_key (item) != 0)
 			rid = e_cal_component_get_recurid_as_string (modified_comp);
 
 		e_cal_component_get_uid (modified_comp, &uid);



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