summaryrefslogtreecommitdiffstats
path: root/hcid/adapter.c
diff options
context:
space:
mode:
Diffstat (limited to 'hcid/adapter.c')
-rw-r--r--hcid/adapter.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hcid/adapter.c b/hcid/adapter.c
index 4b1bc0eb..eda5fc22 100644
--- a/hcid/adapter.c
+++ b/hcid/adapter.c
@@ -2130,7 +2130,7 @@ static void create_device_req_free(struct create_device_req *create)
create = NULL;
}
-struct device *adapter_get_device(struct adapter *adapter, const char *src)
+struct device *adapter_get_device(struct adapter *adapter, const char *dest)
{
struct device *device;
GSList *l;
@@ -2139,7 +2139,7 @@ struct device *adapter_get_device(struct adapter *adapter, const char *src)
return NULL;
l = g_slist_find_custom(adapter->devices,
- src, (GCompareFunc) device_address_cmp);
+ dest, (GCompareFunc) device_address_cmp);
if (!l)
return NULL;