diff options
Diffstat (limited to 'hcid/device.h')
-rw-r--r-- | hcid/device.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/hcid/device.h b/hcid/device.h index cdb68a50..d8dca25f 100644 --- a/hcid/device.h +++ b/hcid/device.h @@ -23,8 +23,8 @@ */ struct device { - char *address; - char *path; + gchar *address; + gchar *path; struct adapter *adapter; GSList *uuids; }; @@ -32,6 +32,6 @@ struct device { gboolean device_init(DBusConnection *conn); void device_cleanup(void); void device_foreach(GFunc func, gpointer user_data); -const char *device_create(struct adapter *adapter, - const char *address, GSList *uuids); -void device_remove(const char *path); +const gchar *device_create(struct adapter *adapter, + const gchar *address, GSList *uuids); +void device_remove(const gchar *path); |