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

@@ -27,14 +27,14 @@ void lv_example_event_3(void)
lv_obj_center(cont);
lv_obj_set_flex_flow(cont, LV_FLEX_FLOW_ROW_WRAP);
uint32_t i;
unsigned int i;
for(i = 0; i < 30; i++) {
lv_obj_t * btn = lv_btn_create(cont);
lv_obj_set_size(btn, 80, 50);
lv_obj_add_flag(btn, LV_OBJ_FLAG_EVENT_BUBBLE);
lv_obj_t * label = lv_label_create(btn);
lv_label_set_text_fmt(label, "%d", i);
lv_label_set_text_fmt(label, "%u", i);
lv_obj_center(label);
}