mxfdemux: fix stray semicolons that mess up if statement
authorTim-Philipp Müller <tim.muller@collabora.co.uk>
Tue, 16 Jun 2009 17:46:49 +0000 (18:46 +0100)
committerTim-Philipp Müller <tim.muller@collabora.co.uk>
Thu, 18 Jun 2009 20:17:24 +0000 (21:17 +0100)
gst/mxf/mxfdemux.c

index c33650b..5abd37f 100644 (file)
@@ -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;