summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--sl4n/facades/bluetooth/bt_binder_facade.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/sl4n/facades/bluetooth/bt_binder_facade.cpp b/sl4n/facades/bluetooth/bt_binder_facade.cpp
index 3b3beae..b764ef4 100644
--- a/sl4n/facades/bluetooth/bt_binder_facade.cpp
+++ b/sl4n/facades/bluetooth/bt_binder_facade.cpp
@@ -70,7 +70,7 @@ std::tuple<bool, int> BtBinderFacade::BtBinderEnable() {
return std::make_tuple(false, sl4n_error_codes::kFailInt);
}
bool ret;
- bt_iface->Enable(false, &ret);
+ bt_iface->Enable(&ret);
if (!ret) {
LOG(ERROR) << sl4n::kTagStr << ": Failed to enable the Bluetooth service";
return std::make_tuple(false, sl4n_error_codes::kPassInt);