summaryrefslogtreecommitdiff
path: root/gst
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2009-06-07 22:49:01 +0100
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2009-06-08 17:13:17 +0100
commit998b2392d3c4ca5fdd89ed5ee0b730a4b20e490e (patch)
tree047e4d645d7681acf5862d23e225c80f998cdac0 /gst
parent89c42f8506ae8041573310b60fd27f8bf7010e0e (diff)
downloadgstreamer-998b2392d3c4ca5fdd89ed5ee0b730a4b20e490e.tar.gz
Remove double semicolons at end of line
Diffstat (limited to 'gst')
-rw-r--r--gst/gsturi.c2
-rw-r--r--gst/gstvalue.c12
2 files changed, 7 insertions, 7 deletions
diff --git a/gst/gsturi.c b/gst/gsturi.c
index 5c0c91c488..d5c301de45 100644
--- a/gst/gsturi.c
+++ b/gst/gsturi.c
@@ -447,7 +447,7 @@ gst_uri_get_location (const gchar * uri)
#endif
GST_LOG ("extracted location '%s' from URI '%s'", GST_STR_NULL (unescaped),
- uri);;
+ uri);
return unescaped;
}
diff --git a/gst/gstvalue.c b/gst/gstvalue.c
index 48086f0fa7..e7a3c564d6 100644
--- a/gst/gstvalue.c
+++ b/gst/gstvalue.c
@@ -2634,7 +2634,7 @@ gst_value_subtract_from_list (GValue * dest, const GValue * minuend,
gboolean ret = FALSE;
GType ltype;
- ltype = gst_value_list_get_type ();;
+ ltype = gst_value_list_get_type ();
size = gst_value_list_get_size (minuend);
for (i = 0; i < size; i++) {
@@ -3024,7 +3024,7 @@ gst_value_can_intersect (const GValue * value1, const GValue * value2)
guint i;
GType ltype, type1, type2;
- ltype = gst_value_list_get_type ();;
+ ltype = gst_value_list_get_type ();
/* special cases */
if (G_VALUE_HOLDS (value1, ltype) || G_VALUE_HOLDS (value2, ltype))
@@ -3066,7 +3066,7 @@ gst_value_intersect (GValue * dest, const GValue * value1,
guint i;
GType ltype, type1, type2;
- ltype = gst_value_list_get_type ();;
+ ltype = gst_value_list_get_type ();
/* special cases first */
if (G_VALUE_HOLDS (value1, ltype))
@@ -3144,7 +3144,7 @@ gst_value_subtract (GValue * dest, const GValue * minuend,
guint i;
GType ltype, mtype, stype;
- ltype = gst_value_list_get_type ();;
+ ltype = gst_value_list_get_type ();
/* special cases first */
if (G_VALUE_HOLDS (minuend, ltype))
@@ -3200,7 +3200,7 @@ gst_value_can_subtract (const GValue * minuend, const GValue * subtrahend)
guint i;
GType ltype, mtype, stype;
- ltype = gst_value_list_get_type ();;
+ ltype = gst_value_list_get_type ();
/* special cases */
if (G_VALUE_HOLDS (minuend, ltype) || G_VALUE_HOLDS (subtrahend, ltype))
@@ -4190,7 +4190,7 @@ _gst_value_initialize (void)
gst_value_deserialize_array,
};
- gst_value.type = gst_value_array_get_type ();;
+ gst_value.type = gst_value_array_get_type ();
gst_value_register (&gst_value);
}