Skip to content

Commit

Permalink
removed an empty assignment that caused a compiler warning (#372)
Browse files Browse the repository at this point in the history
  • Loading branch information
Raupinger authored May 20, 2021
1 parent 9ab298c commit 8c3b250
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/displayapp/screens/Notifications.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 8c3b250

Please sign in to comment.