Fix some warnings

This commit is contained in:
Themba Dube
2020-02-15 14:18:47 -05:00
parent 7722a2b49d
commit 63ad3df793
5 changed files with 168 additions and 129 deletions

View File

@@ -353,6 +353,7 @@ void lv_mem_defrag(void)
lv_res_t lv_mem_test(void)
{
#if LV_MEM_CUSTOM == 0
lv_mem_ent_t * e;
e = ent_get_next(NULL);
while(e) {
@@ -362,7 +363,7 @@ lv_res_t lv_mem_test(void)
}
e = ent_get_next(e);
}
#endif
return LV_RES_OK;
}