From ef327114ef941137881c1d4822cd68c28bd3f28d Mon Sep 17 00:00:00 2001 From: Thomas Vander Stichele Date: Fri, 8 Feb 2002 10:55:40 +0000 Subject: fixed silly bug apparently gcc 3 allows this according to gcc3 Original commit message from CVS: fixed silly bug apparently gcc 3 allows this according to gcc3 --- gst/mpegaudioparse/gstmp3types.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'gst/mpegaudioparse/gstmp3types.c') diff --git a/gst/mpegaudioparse/gstmp3types.c b/gst/mpegaudioparse/gstmp3types.c index c0735cc5..81729d92 100644 --- a/gst/mpegaudioparse/gstmp3types.c +++ b/gst/mpegaudioparse/gstmp3types.c @@ -33,10 +33,10 @@ mp3_typefind(GstBuffer *buf, gpointer private) { gchar *data; gulong head; - - data = GST_BUFFER_DATA(buf); GstCaps *caps; + data = GST_BUFFER_DATA(buf); + GST_DEBUG (0,"mp3typefind: typefind\n"); /* check for ID3 Tag first and forward ID3 length */ -- cgit v1.2.1