Add missing space in if expression.

This commit is contained in:
Jean-François Milants 2022-03-14 21:03:08 +01:00 committed by JF
parent df61907073
commit f973f1c12c

View file

@ -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;
}