summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorBrian Cameron <brian.cameron@sun.com>2010-02-16 01:40:19 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2010-02-16 01:40:19 +0000
commita45b351ddf48dc876e8e0ee69575480b57ab3e96 (patch)
tree2913044da4c1c8a73aa04ce06d1a83fcfd6c9426 /gst
parent3a52d21f95a05894f366cd17395a875736716f1d (diff)
matroska: fix GST_ELEMENT_ERROR usage
Fixes #610053.
Diffstat (limited to 'gst')
-rw-r--r--gst/matroska/matroska-demux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c
index 3df6ff7e5..5f2d10bf5 100644
--- a/gst/matroska/matroska-demux.c
+++ b/gst/matroska/matroska-demux.c
@@ -2298,7 +2298,7 @@ seek_error:
{
GST_OBJECT_UNLOCK (demux);
GST_PAD_STREAM_UNLOCK (demux->sinkpad);
- GST_ELEMENT_ERROR (demux, STREAM, DEMUX, NULL, ("Got a seek error"));
+ GST_ELEMENT_ERROR (demux, STREAM, DEMUX, (NULL), ("Got a seek error"));
return FALSE;
}
}