diff options
| author | Jeff Epler <jepler@gmail.com> | 2020-09-12 16:30:12 -0500 |
|---|---|---|
| committer | Jeff Epler <jepler@gmail.com> | 2020-09-12 16:30:12 -0500 |
| commit | 7151ee85ce55683b95bdd19d87e08ed23c857bc6 (patch) | |
| tree | 7e61a9f42446dde62cafb4b03c70122be6523296 /devices | |
| parent | 5729097bc415a935b0e18b034a6313cf0b74daab (diff) | |
_bleio: add missing break statement
Diffstat (limited to 'devices')
| -rw-r--r-- | devices/ble_hci/common-hal/_bleio/att.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/devices/ble_hci/common-hal/_bleio/att.c b/devices/ble_hci/common-hal/_bleio/att.c index 591e508a6..6528361cb 100644 --- a/devices/ble_hci/common-hal/_bleio/att.c +++ b/devices/ble_hci/common-hal/_bleio/att.c @@ -1748,6 +1748,7 @@ void check_att_err(uint8_t err) { break; case BT_ATT_ERR_ENCRYPTION_KEY_SIZE: msg = translate("Encryption key size"); + break; case BT_ATT_ERR_INVALID_ATTRIBUTE_LEN: msg = translate("Invalid attribute length"); break; |
