summaryrefslogtreecommitdiffstats
path: root/hcid/device.h
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2008-03-11 19:37:33 +0000
committerClaudio Takahasi <claudio.takahasi@openbossa.org>2008-03-11 19:37:33 +0000
commite2bd3afdf478e4c7d180026a81480b501bd356ea (patch)
treee6a9bdc80b7fa7201f83a788cd6b7b35ade837c9 /hcid/device.h
parent955579357e2a7808fb1a19bd9bf2f936c28037b4 (diff)
minor cleanup: replace char by gchar
Diffstat (limited to 'hcid/device.h')
-rw-r--r--hcid/device.h10
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);