mxfdemux: fix stray semicolons that mess up if statement

This commit is contained in:
Tim-Philipp Müller 2009-06-16 18:46:49 +01:00
parent 6a7b237da0
commit 3b99292629

View 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;