Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit f9223399 authored by Chris Manton's avatar Chris Manton
Browse files

stack::ble::gap Remove unnecessary btm_status coercion

Bug: 357945493
Test: m .
Flag: EXEMPT, Unnecessary type coercion

Change-Id: Ia1ab3564ae296ef7b88088755698150e365d8aaf
parent 307cb8fb
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -1489,8 +1489,8 @@ void btm_send_hci_set_scan_params(uint8_t scan_type, uint16_t scan_int, uint16_t
static void btm_ble_scan_filt_param_cfg_evt(uint8_t /* avbl_space */,
                                            tBTM_BLE_SCAN_COND_OP /* action_type */,
                                            tBTM_STATUS btm_status) {
  if (btm_status != btm_status_value(BTM_SUCCESS)) {
    log::error("{}", btm_status);
  if (btm_status != BTM_SUCCESS) {
    log::error("{}", btm_status_text(btm_status));
  } else {
    log::verbose("");
  }