mirror of
https://github.com/libretro/RetroArch
synced 2025-02-28 12:40:23 +00:00
(string_list) Silence warning
This commit is contained in:
parent
7dfaae58f9
commit
3fbcde000c
@ -452,7 +452,7 @@ int string_list_find_elem(const struct string_list *list, const char *elem)
|
||||
for (i = 0; i < list->size; i++)
|
||||
{
|
||||
if (string_is_equal_noncase(list->elems[i].data, elem))
|
||||
return (i + 1);
|
||||
return (int)(i + 1);
|
||||
}
|
||||
}
|
||||
return 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user