remove unused variable

This commit is contained in:
Gabor Kiss-Vamosi
2020-09-01 19:19:25 +02:00
parent 85bd12a794
commit 0596088544

View File

@@ -485,7 +485,6 @@ void lv_obj_clean(lv_obj_t * obj)
{
LV_ASSERT_OBJ(obj, LV_OBJX_NAME);
lv_obj_t * child = lv_obj_get_child(obj, NULL);
lv_obj_t * child_next;
while(child) {
lv_obj_del(child);
child = lv_obj_get_child(obj, NULL); /*Get the new first child*/