summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--ChangeLog5
-rw-r--r--ext/gio/gstgiosink.c3
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index cbdfb975..2425b539 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2007-10-02 Sebastian Dröge <slomo@circular-chaos.org>
+
+ * ext/gio/gstgiosink.c: (gst_gio_sink_start):
+ Update to API changes in GIO.
+
2007-10-01 Wim Taymans <wim.taymans@gmail.com>
* gst/sdp/gstsdpdemux.c: (gst_sdp_demux_media_to_caps):
diff --git a/ext/gio/gstgiosink.c b/ext/gio/gstgiosink.c
index 2d9677b9..a676ea6a 100644
--- a/ext/gio/gstgiosink.c
+++ b/ext/gio/gstgiosink.c
@@ -203,7 +203,8 @@ gst_gio_sink_start (GstBaseSink * base_sink)
return FALSE;
}
- sink->stream = g_file_create (sink->file, sink->cancel, &err);
+ sink->stream =
+ g_file_create (sink->file, G_FILE_CREATE_FLAGS_NONE, sink->cancel, &err);
success = (sink->stream != NULL);
if (!success && !gst_gio_error (sink, "g_file_create", &err, NULL)) {