aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/ipod-sync/ical-format.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2008-04-20 03:53:51 +0800
committerMatthew Barnes <mbarnes@src.gnome.org>2008-04-20 03:53:51 +0800
commitdae227365983880e24daede574bdc144c083e2ec (patch)
tree915d5cf406318bed3d5c66e7d0e23dbbae1f9da4 /plugins/ipod-sync/ical-format.c
parent2758c38b48d3d50b13867152274ff4c83b753155 (diff)
downloadgsoc2013-evolution-dae227365983880e24daede574bdc144c083e2ec.tar
gsoc2013-evolution-dae227365983880e24daede574bdc144c083e2ec.tar.gz
gsoc2013-evolution-dae227365983880e24daede574bdc144c083e2ec.tar.bz2
gsoc2013-evolution-dae227365983880e24daede574bdc144c083e2ec.tar.lz
gsoc2013-evolution-dae227365983880e24daede574bdc144c083e2ec.tar.xz
gsoc2013-evolution-dae227365983880e24daede574bdc144c083e2ec.tar.zst
gsoc2013-evolution-dae227365983880e24daede574bdc144c083e2ec.zip
Fix some compilation errors.
2008-04-19 Matthew Barnes <mbarnes@redhat.com> * plugins/ipod-sync/ical-fomat.c (do_save_calendar_ical): * plugins/ipod-sync/ipod-sync.c (open_for_writing), (destination_save_addressbook): Fix some compilation errors. svn path=/trunk/; revision=35389
Diffstat (limited to 'plugins/ipod-sync/ical-format.c')
-rw-r--r--plugins/ipod-sync/ical-format.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/ipod-sync/ical-format.c b/plugins/ipod-sync/ical-format.c
index f5005c1bda..3c47a6555d 100644
--- a/plugins/ipod-sync/ical-format.c
+++ b/plugins/ipod-sync/ical-format.c
@@ -96,7 +96,7 @@ do_save_calendar_ical (FormatHandler *handler, EPlugin *ep, ECalPopupTargetSourc
char *ical_str = icalcomponent_as_ical_string (top_level);
g_output_stream_write_all (stream, ical_str, strlen (ical_str), NULL, NULL, &error);
- g_output_stream_close (stream);
+ g_output_stream_close (stream, NULL, NULL);
g_free (ical_str);
}