pre-C99 fixes
authorScott Wheeler <wheeler@kde.org>
Mon, 1 Nov 2004 13:23:29 +0000 (13:23 +0000)
committerScott Wheeler <wheeler@kde.org>
Mon, 1 Nov 2004 13:23:29 +0000 (13:23 +0000)
Original commit message from CVS:
pre-C99 fixes

ext/cdparanoia/gstcdparanoia.c
gst/playback/gststreaminfo.c

index c15bf679d7272b402883a71a95188f493109c7da..27462fefc76426c964aa50e29cd0ea1cf07f76a3 100644 (file)
@@ -1191,10 +1191,10 @@ cdparanoia_uri_set_uri (GstURIHandler * handler, const gchar * uri)
   gchar *protocol, *location;
   gboolean ret;
 
-  ret = TRUE;
-
   CDParanoia *cdparanoia = CDPARANOIA (handler);
 
+  ret = TRUE;
+
   protocol = gst_uri_get_protocol (uri);
   if (strcmp (protocol, "cdda") != 0) {
     g_free (protocol);
index 978e225a6be3e94fac4ad421936c127afb865c22..4c1b22f9da3e4116a625fed45e6163ed29c58af5 100644 (file)
@@ -233,6 +233,7 @@ gst_stream_info_set_property (GObject * object, guint prop_id,
     const GValue * value, GParamSpec * pspec)
 {
   GstStreamInfo *stream_info;
+  gboolean new_mute;
 
   g_return_if_fail (GST_IS_STREAM_INFO (object));
 
@@ -245,7 +246,7 @@ gst_stream_info_set_property (GObject * object, guint prop_id,
         g_warning ("cannot mute element stream");
         break;
       }
-      gboolean new_mute = g_value_get_boolean (value);
+      new_mute = g_value_get_boolean (value);
 
       if (new_mute != stream_info->mute) {
         stream_info->mute = new_mute;