Add missing space in if expression.

This commit is contained in:
Jean-François Milants 2022-03-14 21:03:08 +01:00
parent dbbb6e9382
commit 4e227135a9
1 changed files with 1 additions and 1 deletions

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