Add missing space in if expression.

main
Jean-François Milants 2022-03-14 21:03:08 +07:00 committed by JF
parent df61907073
commit f973f1c12c
1 changed files with 1 additions and 1 deletions

@ -128,7 +128,7 @@ int Pinetime::Controllers::MusicService::OnCommand(uint16_t conn_handle, uint16_
if (ctxt->op == BLE_GATT_ACCESS_OP_WRITE_CHR) {
size_t notifSize = OS_MBUF_PKTLEN(ctxt->om);
if(notifSize > MaxStringSize) {
if (notifSize > MaxStringSize) {
notifSize = MaxStringSize;
}