mirror of
https://github.com/lvgl/lvgl.git
synced 2026-05-10 12:47:51 +08:00
fix: format specifier in lv_obj_tree.c (#8244)
This commit is contained in:
@@ -746,7 +746,7 @@ static void dump_tree_core(lv_obj_t * obj, int32_t depth)
|
||||
#endif
|
||||
|
||||
/*id of `obj0` is an invalid id for builtin id*/
|
||||
LV_LOG_USER("%*sobj:%p, id:%s;", 2 * depth, "", (void *)obj, id);
|
||||
LV_LOG_USER("%*sobj:%p, id:%s;", (int)(2 * depth), "", (void *)obj, id);
|
||||
#endif /*LV_USE_LOG*/
|
||||
|
||||
if(obj && obj->spec_attr && obj->spec_attr->child_cnt) {
|
||||
|
||||
Reference in New Issue
Block a user