From 422dc0a7e5b2da37e8ee4a8e9239769ca210b402 Mon Sep 17 00:00:00 2001 From: Jens Granseuer Date: Mon, 8 May 2006 10:59:05 +0000 Subject: C89 compliance fixes. Fixes #340980 Original commit message from CVS: Patch by: Jens Granseuer * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_init): * gst/wavparse/gstwavparse.c: (gst_wavparse_dispose): C89 compliance fixes. Fixes #340980 --- gst/wavparse/gstwavparse.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'gst/wavparse') diff --git a/gst/wavparse/gstwavparse.c b/gst/wavparse/gstwavparse.c index c9d75a80..7f04622e 100644 --- a/gst/wavparse/gstwavparse.c +++ b/gst/wavparse/gstwavparse.c @@ -205,8 +205,10 @@ gst_wavparse_class_init (GstWavParseClass * klass) static void gst_wavparse_dispose (GObject * object) { + GstWavParse *wav; + GST_DEBUG ("WAV: Dispose\n"); - GstWavParse *wav = GST_WAVPARSE (object); + wav = GST_WAVPARSE (object); if (wav->adapter) { g_object_unref (wav->adapter); -- cgit