fix(api_map): fix sign conversion warning (#10414)

This commit is contained in:
André Costa
2026-08-03 10:07:41 +02:00
committed by GitHub
parent f5726cda04
commit 3da50305af
+1 -1
View File
@@ -95,7 +95,7 @@ static inline void lv_obj_move_foreground(lv_obj_t * obj)
return;
}
lv_obj_move_to_index(obj, lv_obj_get_child_count(parent) - 1);
lv_obj_move_to_index(obj, (int32_t)lv_obj_get_child_count(parent) - 1);
}
/**