[Goodies-commits] r5201 - xfburn/trunk/xfburn

David Mohr squisher at xfce.org
Tue Aug 5 23:47:27 CEST 2008


Author: squisher
Date: 2008-08-05 21:47:27 +0000 (Tue, 05 Aug 2008)
New Revision: 5201

Modified:
   xfburn/trunk/xfburn/xfburn-hal-manager.c
Log:
Fixing typo

Modified: xfburn/trunk/xfburn/xfburn-hal-manager.c
===================================================================
--- xfburn/trunk/xfburn/xfburn-hal-manager.c	2008-08-05 21:45:53 UTC (rev 5200)
+++ xfburn/trunk/xfburn/xfburn-hal-manager.c	2008-08-05 21:47:27 UTC (rev 5201)
@@ -305,7 +305,7 @@
     exists = libhal_device_property_exists (priv->hal_context, *devices, "info.capabilities", &error);
     if (dbus_error_is_set (&error)) {
       g_warning ("Error checking HAL property for %s: %s", *devices, error.message);
-      dbus_error_free (error);
+      dbus_error_free (&error);
       return -1;
     }
 
@@ -315,7 +315,7 @@
     cap_list = libhal_device_get_property_strlist (priv->hal_context, *devices, "info.capabilities", &error);
     if (dbus_error_is_set (&error)) {
       g_warning ("Error getting HAL property for %s: %s", *devices, error.message);
-      dbus_error_free (error);
+      dbus_error_free (&error);
       return -1;
     }
 
@@ -324,7 +324,7 @@
         exists = libhal_device_property_exists (priv->hal_context, *devices, "storage.cdrom.write_speed", &error);
         if (dbus_error_is_set (&error)) {
           g_warning ("Error checking HAL property for %s: %s", *devices, error.message);
-          dbus_error_free (error);
+          dbus_error_free (&error);
           return -1;
         }
 
@@ -334,7 +334,7 @@
         write_speed = libhal_device_get_property_int (priv->hal_context, *devices, "storage.cdrom.write_speed", &error);
         if (dbus_error_is_set (&error)) {
           g_warning ("Error getting HAL property for %s: %s", *devices, error.message);
-          dbus_error_free (error);
+          dbus_error_free (&error);
           return -1;
         }
 
@@ -355,7 +355,7 @@
 
       if (dbus_error_is_set (&error)) {
         g_warning ("Error printing HAL device %s: %s", *devices, error.message);
-        dbus_error_free (error);
+        dbus_error_free (&error);
         return -1;
       }
       */




More information about the Goodies-commits mailing list