fix: format specifier in lv_obj_tree.c (#8244)

This commit is contained in:
Liam Howatt
2025-05-14 12:48:16 +02:00
committed by GitHub
parent aed8cf6f05
commit 3a33caa62c
+1 -1
View File
@@ -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) {