Skip to content

Commit f973f1c

Browse files
committed
Add missing space in if expression.
1 parent df61907 commit f973f1c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/components/ble/MusicService.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ int Pinetime::Controllers::MusicService::OnCommand(uint16_t conn_handle, uint16_
128128
if (ctxt->op == BLE_GATT_ACCESS_OP_WRITE_CHR) {
129129
size_t notifSize = OS_MBUF_PKTLEN(ctxt->om);
130130

131-
if(notifSize > MaxStringSize) {
131+
if (notifSize > MaxStringSize) {
132132
notifSize = MaxStringSize;
133133
}
134134

0 commit comments

Comments
 (0)