From 3b99292629c2ce6c38a9315699ece1546079846a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tim-Philipp=20M=C3=BCller?= Date: Tue, 16 Jun 2009 18:46:49 +0100 Subject: mxfdemux: fix stray semicolons that mess up if statement --- gst/mxf/mxfdemux.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'gst') diff --git a/gst/mxf/mxfdemux.c b/gst/mxf/mxfdemux.c index c33650b5..5abd37ff 100644 --- a/gst/mxf/mxfdemux.c +++ b/gst/mxf/mxfdemux.c @@ -439,8 +439,8 @@ gst_mxf_demux_handle_partition_pack (GstMXFDemux * demux, const MXFUL * key, for (l = demux->partitions; l; l = l->next) { GstMXFDemuxPartition *a, *b; - if (l->next == NULL); - break; + if (l->next == NULL) + break; a = l->data; b = l->next->data; @@ -1921,8 +1921,8 @@ gst_mxf_demux_handle_random_index_pack (GstMXFDemux * demux, const MXFUL * key, for (l = demux->partitions; l; l = l->next) { GstMXFDemuxPartition *a, *b; - if (l->next == NULL); - break; + if (l->next == NULL) + break; a = l->data; b = l->next->data; -- cgit v1.2.1