fix(refr) silence compiler warning due to integer type mismatch (#2722)

This commit is contained in:
Jianting (Meco) Man
2021-10-25 12:47:25 -04:00
committed by GitHub
parent 95be2c7b99
commit 97bf74915d
12 changed files with 28 additions and 28 deletions

View File

@@ -12,13 +12,13 @@ void lv_example_flex_4(void)
lv_obj_center(cont);
lv_obj_set_flex_flow(cont, LV_FLEX_FLOW_COLUMN_REVERSE);
uint32_t i;
unsigned int i;
for(i = 0; i < 6; i++) {
lv_obj_t * obj = lv_obj_create(cont);
lv_obj_set_size(obj, 100, 50);
lv_obj_t * label = lv_label_create(obj);
lv_label_set_text_fmt(label, "Item: %d", i);
lv_label_set_text_fmt(label, "Item: %u", i);
lv_obj_center(label);
}
}