From a45b351ddf48dc876e8e0ee69575480b57ab3e96 Mon Sep 17 00:00:00 2001 From: Brian Cameron Date: Tue, 16 Feb 2010 01:40:19 +0000 Subject: [PATCH] matroska: fix GST_ELEMENT_ERROR usage Fixes #610053. --- gst/matroska/matroska-demux.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gst/matroska/matroska-demux.c b/gst/matroska/matroska-demux.c index 3df6ff7e51..5f2d10bf54 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; } }