diff --git a/plugins/hciops.c b/plugins/hciops.c
index 7d807c8..50bf254 100644
--- a/plugins/hciops.c
+++ b/plugins/hciops.c
ba2str(bdaddr, addr);
DBG("hci%d bdaddr %s", index, addr);
- match = g_slist_find_custom(dev->oob_data, &bdaddr, oob_bdaddr_cmp);
+ match = g_slist_find_custom(dev->oob_data, bdaddr, oob_bdaddr_cmp);
if (match) {
data = match->data;
ba2str(bdaddr, addr);
DBG("hci%d bdaddr %s", index, addr);
- match = g_slist_find_custom(dev->oob_data, &bdaddr, oob_bdaddr_cmp);
+ match = g_slist_find_custom(dev->oob_data, bdaddr, oob_bdaddr_cmp);
if (!match)
return -ENOENT;