diff options
| author | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2008-03-11 19:37:33 +0000 | 
|---|---|---|
| committer | Claudio Takahasi <claudio.takahasi@openbossa.org> | 2008-03-11 19:37:33 +0000 | 
| commit | e2bd3afdf478e4c7d180026a81480b501bd356ea (patch) | |
| tree | e6a9bdc80b7fa7201f83a788cd6b7b35ade837c9 /hcid/adapter.c | |
| parent | 955579357e2a7808fb1a19bd9bf2f936c28037b4 (diff) | |
minor cleanup: replace char by gchar
Diffstat (limited to 'hcid/adapter.c')
| -rw-r--r-- | hcid/adapter.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/hcid/adapter.c b/hcid/adapter.c index 313e5a06..34e74645 100644 --- a/hcid/adapter.c +++ b/hcid/adapter.c @@ -3354,7 +3354,7 @@ static void discover_services_cb(gpointer user_data, sdp_list_t *recs, int err)  	str2ba(adapter->address, &src);  	str2ba(adapter->create->address, &dst);  	if (uuids) { -		char *str = bt_list2string(uuids); +		gchar *str = bt_list2string(uuids);  		write_device_profiles(&src, &dst, str);  		g_free(str);  	} else @@ -3372,7 +3372,7 @@ static DBusHandlerResult create_device(DBusConnection *conn,  {  	struct adapter *adapter = data;  	struct create_device_req *create; -	const char *address; +	const gchar *address;  	bdaddr_t src, dst;  	int err;  | 
