Will the who-ever it is that writes gcc-2.95-incompatible code please stop that? Some of us don't use C99 yet ;)

Original commit message from CVS:
Will the who-ever it is that writes gcc-2.95-incompatible code please stop that? Some of us don't use C99 yet ;)
This commit is contained in:
Ronald S. Bultje 2003-02-07 21:55:43 +00:00
parent 751072c948
commit 2534ded87b

View file

@ -990,9 +990,9 @@ static gboolean gst_gnomevfssrc_open_file(GstGnomeVFSSrc *src)
src->size = info->size; src->size = info->size;
if (info->valid_fields & GNOME_VFS_FILE_INFO_FIELDS_MIME_TYPE) if (info->valid_fields & GNOME_VFS_FILE_INFO_FIELDS_MIME_TYPE)
{ {
GstCaps *caps = gst_caps_new ("gnomevfssrc", info->mime_type, NULL);
GST_DEBUG (0, "got MIME type \"%s\", setting caps", GST_DEBUG (0, "got MIME type \"%s\", setting caps",
info->mime_type); info->mime_type);
GstCaps *caps = gst_caps_new ("gnomevfssrc", info->mime_type, NULL);
gst_pad_try_set_caps (src->srcpad, caps); gst_pad_try_set_caps (src->srcpad, caps);
} }
else else
@ -1113,6 +1113,7 @@ gst_gnomevfssrc_srcpad_event (GstPad *pad, GstEvent *event)
case GST_EVENT_SEEK: case GST_EVENT_SEEK:
{ {
gint64 desired_offset; gint64 desired_offset;
GnomeVFSResult result;
if (GST_EVENT_SEEK_FORMAT (event) != GST_FORMAT_BYTES) { if (GST_EVENT_SEEK_FORMAT (event) != GST_FORMAT_BYTES) {
gst_event_unref (event); gst_event_unref (event);
@ -1133,7 +1134,6 @@ gst_gnomevfssrc_srcpad_event (GstPad *pad, GstEvent *event)
return FALSE; return FALSE;
break; break;
} }
GnomeVFSResult result;
result = gnome_vfs_seek(src->handle, result = gnome_vfs_seek(src->handle,
GNOME_VFS_SEEK_START, desired_offset); GNOME_VFS_SEEK_START, desired_offset);