diff options
author | Tim-Philipp Müller <tim@centricular.com> | 2015-03-10 09:32:51 +0000 |
---|---|---|
committer | Tim-Philipp Müller <tim@centricular.com> | 2015-03-10 09:32:51 +0000 |
commit | 0a467495c2ab2898f96eb06e8a170d52f7e3a2b7 (patch) | |
tree | ee3f6a2279e8dd9bede34925f2435fa96c8e69c8 | |
parent | 77126f73c5a858b2f30c61941fef2f3e8b4424c4 (diff) |
Fix double semicolons
-rw-r--r-- | ext/dvdread/dvdreadsrc.c | 2 | ||||
-rw-r--r-- | gst/dvdsub/gstdvdsubdec.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/dvdread/dvdreadsrc.c b/ext/dvdread/dvdreadsrc.c index e928559a..e0584ef9 100644 --- a/ext/dvdread/dvdreadsrc.c +++ b/ext/dvdread/dvdreadsrc.c @@ -1020,7 +1020,7 @@ gst_dvd_read_src_set_property (GObject * object, guint prop_id, if (started) { g_warning ("%s: property '%s' needs to be set before the device is " "opened", GST_ELEMENT_NAME (src), pspec->name); - break;; + break; } g_free (src->location); diff --git a/gst/dvdsub/gstdvdsubdec.c b/gst/dvdsub/gstdvdsubdec.c index 2589ee6b..f6a3d817 100644 --- a/gst/dvdsub/gstdvdsubdec.c +++ b/gst/dvdsub/gstdvdsubdec.c @@ -569,7 +569,7 @@ gst_dvd_sub_dec_merge_title (GstDvdSubDec * dec, GstVideoFrame * frame) gint hl_top, hl_bottom; gint last_y; RLE_state state; - guint8 *Y_data;; + guint8 *Y_data; GST_DEBUG_OBJECT (dec, "Merging subtitle on frame"); |