GNOME Bugzilla – Bug 169164
[raw1394] [patch] compile issue on gcc 2.95
Last modified: 2005-03-04 08:40:10 UTC
Here is patch to fix it, reported by Robert Scott on http://bugs.gentoo.org/show_bug.cgi?id=84019: diff -urN gst-plugins-0.8.7.orig/ext/raw1394/gstdv1394src.c gst-plugins-0.8.7/ext/raw1394/gstdv1394src.c --- gst-plugins-0.8.7.orig/ext/raw1394/gstdv1394src.c 2004-10-20 14:31:13 +0100 +++ gst-plugins-0.8.7/ext/raw1394/gstdv1394src.c 2005-03-03 23:25:58 +0000 @@ -771,10 +771,11 @@ { gchar *protocol, *location; gboolean ret; - + GstDV1394Src *gst_dv1394src; + ret = TRUE; - - GstDV1394Src *gst_dv1394src = GST_DV1394SRC (handler); + + gst_dv1394src = GST_DV1394SRC (handler); protocol = gst_uri_get_protocol (uri); if (strcmp (protocol, "dv") != 0) {
*** This bug has been marked as a duplicate of 169146 ***