summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Brabham <optedoblivion@google.com>2019-05-16 08:55:30 -0700
committerandroid-build-merger <android-build-merger@google.com>2019-05-16 08:55:30 -0700
commit06a662dfaf79d1a778a818f70c3d831762d71a29 (patch)
tree2ca63a07662d88913d3b4a3f940b52005119c289
parent9e109543e09c0dcbeba8c8a024131449754f89fb (diff)
parentddbf9948274074b63ed05d07a5d192881c3f64df (diff)
downloadconnectivity-06a662dfaf79d1a778a818f70c3d831762d71a29.tar.gz
NIAP: Changes for updated enable interface am: ed9415ee7e am: 87ac59c9b2
am: ddbf994827 Change-Id: If2ba5371c215dc57279073830b405589d252801f
-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);