fixup! use wider type for loop iterator
This commit is contained in:
parent
b813f34e34
commit
194a9790eb
1 changed files with 1 additions and 1 deletions
|
@ -228,7 +228,7 @@ void zmk_ble_clear_all_bonds(void) {
|
||||||
LOG_DBG("zmk_ble_clear_all_bonds()");
|
LOG_DBG("zmk_ble_clear_all_bonds()");
|
||||||
|
|
||||||
// Unpair all profiles
|
// Unpair all profiles
|
||||||
for (uint8_t i = 0; i < ZMK_BLE_PROFILE_COUNT; i++) {
|
for (int i = 0; i < ZMK_BLE_PROFILE_COUNT; i++) {
|
||||||
clear_profile_bond(i);
|
clear_profile_bond(i);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue