diff options
author | Richard Hughes <richard@hughsie.com> | 2009-07-15 16:00:06 +0100 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2009-07-15 16:00:06 +0100 |
commit | a9ccd95de3498983321beeaac467647b0fc936b6 (patch) | |
tree | 13daf0061284550d921f9262b476c6492749d19c | |
parent | 902ec925f30ada58fa627924c2b0dcc2904d7ee1 (diff) |
Fix up compile as merging two branches missed a hunk
-rw-r--r-- | src/dkp-device-supply.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/dkp-device-supply.c b/src/dkp-device-supply.c index fe2b79f..48671aa 100644 --- a/src/dkp-device-supply.c +++ b/src/dkp-device-supply.c @@ -386,10 +386,10 @@ dkp_device_supply_refresh_battery (DkpDeviceSupply *supply) serial_number = dkp_device_supply_get_string (native_path, "serial_number"); /* are we possibly recalled by the vendor? */ - recall_notice = devkit_device_has_property (d, "DKP_RECALL_NOTICE"); + recall_notice = g_udev_device_has_property (d, "DKP_RECALL_NOTICE"); if (recall_notice) { - recall_vendor = devkit_device_get_property (d, "DKP_RECALL_VENDOR"); - recall_url = devkit_device_get_property (d, "DKP_RECALL_URL"); + recall_vendor = g_udev_device_get_property (d, "DKP_RECALL_VENDOR"); + recall_url = g_udev_device_get_property (d, "DKP_RECALL_URL"); } g_object_set (device, |