File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
connectivity/FEATURE_BLE/source/generic Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2986,7 +2986,7 @@ bool Gap::apply_peripheral_privacy_connection_policy(
2986
2986
}
2987
2987
tr_info (" Connection %d: disconnecting - reason=%s" ,
2988
2988
event.getConnectionHandle (),
2989
- to_string (local_disconnection_reason_t ::AUTHENTICATION_FAILURE));
2989
+ to_string (local_disconnection_reason_t { local_disconnection_reason_t ::AUTHENTICATION_FAILURE} ));
2990
2990
_pal_gap.disconnect (
2991
2991
connection_handle,
2992
2992
local_disconnection_reason_t ::AUTHENTICATION_FAILURE
Original file line number Diff line number Diff line change @@ -2049,7 +2049,7 @@ void SecurityManager::on_passkey_display(
2049
2049
if (eventHandler) {
2050
2050
eventHandler->passkeyDisplay (connection, ascii_passkey.value ());
2051
2051
} else {
2052
- tr_warning (" Connection %d - No app handler to display pass key" );
2052
+ tr_warning (" Connection %d - No app handler to display pass key" , connection );
2053
2053
}
2054
2054
2055
2055
}
@@ -2061,7 +2061,7 @@ void SecurityManager::on_passkey_request(connection_handle_t connection)
2061
2061
if (eventHandler) {
2062
2062
eventHandler->passkeyRequest (connection);
2063
2063
} else {
2064
- tr_warning (" Connection %d - No app handler to forward pass key request" );
2064
+ tr_warning (" Connection %d - No app handler to forward pass key request" , connection );
2065
2065
}
2066
2066
2067
2067
}
You can’t perform that action at this time.
0 commit comments