sys/v4l/gstv4lelement.c: Add missing semicolon to fix indentation.

Original commit message from CVS:
* sys/v4l/gstv4lelement.c:
Add missing semicolon to fix indentation.
This commit is contained in:
Rene Stadler 2008-02-29 21:48:00 +00:00
parent f0154849b0
commit fac95d0eed
2 changed files with 13 additions and 9 deletions

View file

@ -1,3 +1,8 @@
2008-02-29 Rene Stadler <mail@renestadler.de>
* sys/v4l/gstv4lelement.c:
Add missing semicolon to fix indentation.
2008-02-29 Julien Moutte <julien@fluendo.com> 2008-02-29 Julien Moutte <julien@fluendo.com>
* ext/alsa/gstalsa.c: (gst_alsa_open_iec958_pcm), * ext/alsa/gstalsa.c: (gst_alsa_open_iec958_pcm),

View file

@ -52,21 +52,20 @@ enum
static void gst_v4lelement_init_interfaces (GType type); static void gst_v4lelement_init_interfaces (GType type);
GST_BOILERPLATE_FULL (GstV4lElement, gst_v4lelement, GstPushSrc, GST_BOILERPLATE_FULL (GstV4lElement, gst_v4lelement, GstPushSrc,
GST_TYPE_PUSH_SRC, gst_v4lelement_init_interfaces) GST_TYPE_PUSH_SRC, gst_v4lelement_init_interfaces);
static void gst_v4lelement_dispose (GObject * object); static void gst_v4lelement_dispose (GObject * object);
static void gst_v4lelement_set_property (GObject * object, static void gst_v4lelement_set_property (GObject * object,
guint prop_id, const GValue * value, GParamSpec * pspec); guint prop_id, const GValue * value, GParamSpec * pspec);
static void gst_v4lelement_get_property (GObject * object, static void gst_v4lelement_get_property (GObject * object,
guint prop_id, GValue * value, GParamSpec * pspec); guint prop_id, GValue * value, GParamSpec * pspec);
static gboolean gst_v4lelement_start (GstBaseSrc * src); static gboolean gst_v4lelement_start (GstBaseSrc * src);
static gboolean gst_v4lelement_stop (GstBaseSrc * src); static gboolean gst_v4lelement_stop (GstBaseSrc * src);
static gboolean static gboolean
gst_v4l_iface_supported (GstImplementsInterface * iface, gst_v4l_iface_supported (GstImplementsInterface * iface, GType iface_type)
GType iface_type)
{ {
GstV4lElement *v4lelement = GST_V4LELEMENT (iface); GstV4lElement *v4lelement = GST_V4LELEMENT (iface);