aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJean-François Milants <jf@codingfield.com>2025-05-21 20:52:30 +0200
committerJean-François Milants <jf@codingfield.com>2025-05-21 20:53:47 +0200
commit0880b08546ce2dd5cf8fe2b505a474ffe1d22195 (patch)
tree5cccb60386287d2e7936a7453c443298b3487fdc /src
parente27e51d36af0a7a48fefbfb730151ad872da6845 (diff)
parenta7746d3a3118e40bf3fc0bebc2dce77d9beb29aa (diff)
Fix conflict in NotificationManager
Diffstat (limited to 'src')
-rw-r--r--src/components/ble/NotificationManager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ble/NotificationManager.h b/src/components/ble/NotificationManager.h
index 189a7e13..57a9c715 100644
--- a/src/components/ble/NotificationManager.h
+++ b/src/components/ble/NotificationManager.h
@@ -28,7 +28,7 @@ namespace Pinetime {
using Id = uint8_t;
using Idx = uint8_t;
- std::array<char, MessageSize + 1> message;
+ std::array<char, MessageSize + 1> message{};
uint8_t size;
Categories category = Categories::Unknown;
Id id = 0;