summaryrefslogtreecommitdiff
path: root/src/displayapp
diff options
context:
space:
mode:
authorFlorian <fgrauper@gmail.com>2021-05-20 20:34:21 +0200
committerGitHub <noreply@github.com>2021-05-20 20:34:21 +0200
commit8c3b250dbfe17be61462adc8f84760ce9a648e55 (patch)
tree17be0db23f947d070dec9c780104e2449ed5181c /src/displayapp
parent9ab298c09e273479822d10aad9f7bfe1d287ce75 (diff)
removed an empty assignment that caused a compiler warning (#372)
Diffstat (limited to 'src/displayapp')
-rw-r--r--src/displayapp/screens/Notifications.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/displayapp/screens/Notifications.cpp b/src/displayapp/screens/Notifications.cpp
index 1f113750..1a1729ea 100644
--- a/src/displayapp/screens/Notifications.cpp
+++ b/src/displayapp/screens/Notifications.cpp
@@ -180,7 +180,6 @@ Notifications::NotificationItem::NotificationItem(const char* title,
pchar = strchr(title, '\n');
while (pchar != nullptr) {
*pchar = ' ';
- pchar =
pchar = strchr(pchar + 1, '\n');
}
lv_label_set_text(alert_type, title);