fix(example): fix warnings

related to #3759
This commit is contained in:
Gabor Kiss-Vamosi
2022-12-06 08:08:20 +01:00
parent 84cf05d8b2
commit 1e3ca25fed
2 changed files with 3 additions and 3 deletions

View File

@@ -28,7 +28,7 @@ void lv_example_flex_1(void)
lv_obj_set_size(obj, 100, LV_PCT(100));
label = lv_label_create(obj);
lv_label_set_text_fmt(label, "Item: %u", i);
lv_label_set_text_fmt(label, "Item: %"LV_PRIu32, i);
lv_obj_center(label);
/*Add items to the column*/