removed an empty assignment that caused a compiler warning (#372)

This commit is contained in:
Florian 2021-05-20 20:34:21 +02:00 committed by GitHub
parent 9ab298c09e
commit 8c3b250dbf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);