diff options
author | Benjamin Otte <otte@redhat.com> | 2010-03-02 23:51:18 +0100 |
---|---|---|
committer | Benjamin Otte <otte@redhat.com> | 2010-03-10 20:45:33 +0100 |
commit | e8f65e8bffdad69c3e70c9b4506998b68db37d4a (patch) | |
tree | 28db39f231c5ca66920a8530b4363f11437ec541 /gst/gsttask.c | |
parent | f067d38d1dba22e878a08cc00b479b0bc9e6b3ea (diff) |
Make code safe for -Wredundant-decls
Adds that warning to configure.ac
Includes a tiny change of the GST_BOILERPLATE_FULL() macro:
The get_type() function is no longer declared before being defined.
https://bugzilla.gnome.org/show_bug.cgi?id=611692
Diffstat (limited to 'gst/gsttask.c')
-rw-r--r-- | gst/gsttask.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/gst/gsttask.c b/gst/gsttask.c index 902650233..86059ed2e 100644 --- a/gst/gsttask.c +++ b/gst/gsttask.c @@ -92,8 +92,6 @@ struct _GstTaskPrivate GstTaskPool *pool_id; }; -static void gst_task_class_init (GstTaskClass * klass); -static void gst_task_init (GstTask * task); static void gst_task_finalize (GObject * object); static void gst_task_func (GstTask * task); |