1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/pkg/lvgl: minor style fix

CI should be happy again now.
This commit is contained in:
Marian Buschsieweke 2023-06-01 19:34:28 +02:00
parent 63ca70a564
commit b084575aeb
No known key found for this signature in database
GPG Key ID: CB8E3238CE715A94

View File

@ -102,7 +102,7 @@ void sysmon_create(void)
/* Set the data series to zero */
uint16_t i;
for(i = 0; i < CHART_POINT_NUM; i++) {
for (i = 0; i < CHART_POINT_NUM; i++) {
lv_chart_set_next_value(chart, cpu_ser, 0);
lv_chart_set_next_value(chart, mem_ser, 0);
}