removed an empty assignment that caused a compiler warning (#372)
This commit is contained in:
parent
9ab298c09e
commit
8c3b250dbf
|
@ -180,7 +180,6 @@ Notifications::NotificationItem::NotificationItem(const char* title,
|
||||||
pchar = strchr(title, '\n');
|
pchar = strchr(title, '\n');
|
||||||
while (pchar != nullptr) {
|
while (pchar != nullptr) {
|
||||||
*pchar = ' ';
|
*pchar = ' ';
|
||||||
pchar =
|
|
||||||
pchar = strchr(pchar + 1, '\n');
|
pchar = strchr(pchar + 1, '\n');
|
||||||
}
|
}
|
||||||
lv_label_set_text(alert_type, title);
|
lv_label_set_text(alert_type, title);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user