From e2bd3afdf478e4c7d180026a81480b501bd356ea Mon Sep 17 00:00:00 2001 From: Claudio Takahasi Date: Tue, 11 Mar 2008 19:37:33 +0000 Subject: minor cleanup: replace char by gchar --- hcid/device.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'hcid/device.h') 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); -- cgit