1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-21 06:53:01 +08:00

lv_list: fix warnings

This commit is contained in:
Gabor Kiss-Vamosi 2018-11-02 12:53:36 +01:00
parent 3353a74e1d
commit c083150072

View File

@ -236,8 +236,8 @@ lv_obj_t * lv_list_add(lv_obj_t * list, const void * img_src, const char * txt,
bool lv_list_remove(const lv_obj_t * list, uint32_t index)
{
lv_list_ext_t * ext = lv_obj_get_ext_attr(list);
if(index < 0 && index >= ext->size) return false;
int count = 0;
if(index >= ext->size) return false;
uint32_t count = 0;
lv_obj_t * e = lv_list_get_next_btn(list, NULL);
while(e != NULL) {
if(count == index) {