summaryrefslogtreecommitdiffstats
path: root/gst
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2009-06-16 18:46:49 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-06-18 21:17:24 +0100
commit3b99292629c2ce6c38a9315699ece1546079846a (patch)
treed61fbdcf10b1889e8c4f85c1b2bbee58cfc7d62c /gst
parent6a7b237da05718753c9c7a14397705351016a9eb (diff)
downloadgst-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
Diffstat (limited to 'gst')
-rw-r--r--gst/mxf/mxfdemux.c8
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;