aboutsummaryrefslogtreecommitdiffstats
path: root/calendar/gui/alarm-notify/save.c
diff options
context:
space:
mode:
Diffstat (limited to 'calendar/gui/alarm-notify/save.c')
-rw-r--r--calendar/gui/alarm-notify/save.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/calendar/gui/alarm-notify/save.c b/calendar/gui/alarm-notify/save.c
index 605b02c6b2..e03183ed5d 100644
--- a/calendar/gui/alarm-notify/save.c
+++ b/calendar/gui/alarm-notify/save.c
@@ -131,11 +131,11 @@ get_calendars_to_load (void)
* may not have saved the list of calendar yet.
*/
- l = gconf_client_get_list(gconf_client_get_default(), KEY_CALENDARS, GCONF_VALUE_STRING, NULL);
+ l = gconf_client_get_list (gconf_client_get_default (), KEY_CALENDARS, GCONF_VALUE_STRING, NULL);
+ uris = g_ptr_array_new ();
while (l) {
n = l->next;
- uris = g_ptr_array_new ();
- g_ptr_array_add(uris, l->data);
+ g_ptr_array_add (uris, l->data);
g_slist_free_1(l);
l = n;
}