diff options
author | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-06-16 18:46:49 +0100 |
---|---|---|
committer | Tim-Philipp Müller <tim.muller@collabora.co.uk> | 2009-06-18 21:17:24 +0100 |
commit | 3b99292629c2ce6c38a9315699ece1546079846a (patch) | |
tree | d61fbdcf10b1889e8c4f85c1b2bbee58cfc7d62c | |
parent | 6a7b237da05718753c9c7a14397705351016a9eb (diff) | |
download | gst-plugins-bad-3b99292629c2ce6c38a9315699ece1546079846a.tar.gz gst-plugins-bad-3b99292629c2ce6c38a9315699ece1546079846a.tar.bz2 gst-plugins-bad-3b99292629c2ce6c38a9315699ece1546079846a.zip |
mxfdemux: fix stray semicolons that mess up if statement
-rw-r--r-- | gst/mxf/mxfdemux.c | 8 |
1 files changed, 4 insertions, 4 deletions
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; |