From fab88aed9fe0e1b93ad60f07760c0c996cfcd00f Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Thu, 1 Dec 2005 09:32:17 +0000 Subject: [PATCH] fix typo Original commit message from CVS: fix typo --- plugins/elements/gstfdsink.c | 6 +++--- plugins/elements/gstfdsink.h | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/plugins/elements/gstfdsink.c b/plugins/elements/gstfdsink.c index 7da6e2c2a8..3652dce3dc 100644 --- a/plugins/elements/gstfdsink.c +++ b/plugins/elements/gstfdsink.c @@ -66,7 +66,7 @@ GST_BOILERPLATE_FULL (GstFdSink, gst_fd_sink_, GstElement, GST_TYPE_ELEMENT, static void gst_fd_sink__set_property (GObject * object, guint prop_id, const GValue * value, GParamSpec * pspec); -static void gst_fd_sink__get_property (GObject * object, guint prop_id, +static void gst_fd_sink_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec); static void gst_fd_sink__chain (GstPad * pad, GstData * _data); @@ -89,7 +89,7 @@ gst_fd_sink__class_init (GstFdSinkClass * klass) gobject_class = G_OBJECT_CLASS (klass); gobject_class->set_property = gst_fd_sink__set_property; - gobject_class->get_property = gst_fd_sink__get_property; + gobject_class->get_property = gst_fd_sink_get_property; g_object_class_install_property (G_OBJECT_CLASS (klass), ARG_FD, g_param_spec_int ("fd", "fd", "An open file descriptor to write to", @@ -151,7 +151,7 @@ gst_fd_sink__set_property (GObject * object, guint prop_id, } static void -gst_fd_sink__get_property (GObject * object, guint prop_id, GValue * value, +gst_fd_sink_get_property (GObject * object, guint prop_id, GValue * value, GParamSpec * pspec) { GstFdSink *fdsink; diff --git a/plugins/elements/gstfdsink.h b/plugins/elements/gstfdsink.h index a8c325f7f2..787abb3083 100644 --- a/plugins/elements/gstfdsink.h +++ b/plugins/elements/gstfdsink.h @@ -30,7 +30,7 @@ G_BEGIN_DECLS #define GST_TYPE_FD_SINK \ - (gst_fd_sink__get_type()) + (gst_fd_sink_get_type()) #define GST_FD_SINK(obj) \ (G_TYPE_CHECK_INSTANCE_CAST((obj),GST_TYPE_FD_SINK,GstFdSink)) #define GST_FD_SINK_CLASS(klass) \ @@ -55,7 +55,7 @@ struct _GstFdSinkClass { GstElementClass parent_class; }; -GType gst_fd_sink__get_type(void); +GType gst_fd_sink_get_type(void); G_END_DECLS