summaryrefslogtreecommitdiffstats
path: root/bluetooth-api.c
diff options
context:
space:
mode:
Diffstat (limited to 'bluetooth-api.c')
-rw-r--r--bluetooth-api.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/bluetooth-api.c b/bluetooth-api.c
index 4a7092a..78fd87b 100644
--- a/bluetooth-api.c
+++ b/bluetooth-api.c
@@ -476,7 +476,7 @@ static void bt_connect (struct afb_req request)
return;
}
- ret = device_connect(value);
+ ret = device_connect(value, NULL);
if (0 == ret)
{
@@ -503,7 +503,7 @@ static void bt_disconnect (struct afb_req request)
return;
}
- ret = device_disconnect(value);
+ ret = device_disconnect(value, NULL);
if (0 == ret)
{
afb_req_success (request, NULL, NULL);