diff options
| author | Jean-François Milants <jf@codingfield.com> | 2022-03-14 20:03:08 (GMT) |
|---|---|---|
| committer | JF <JF002@users.noreply.github.com> | 2022-03-21 19:53:15 (GMT) |
| commit | f973f1c12c5f82ddacfdaca29fbe1043d94313ee (patch) | |
| tree | 936bdca00b6d76aa1b549749a971392a0676a949 /src/components/ble/MusicService.cpp | |
| parent | df61907073fab7d4c2f9595c7771e894a3841b65 (diff) | |
Add missing space in if expression.
Diffstat (limited to 'src/components/ble/MusicService.cpp')
| -rw-r--r-- | src/components/ble/MusicService.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ble/MusicService.cpp b/src/components/ble/MusicService.cpp index 7b74ac2..0e53b9c 100644 --- a/src/components/ble/MusicService.cpp +++ b/src/components/ble/MusicService.cpp @@ -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; } |
