mirror of
https://github.com/libretro/RetroArch.git
synced 2025-04-02 10:51:52 -04:00
(string_list) Silence warning
This commit is contained in:
parent
7dfaae58f9
commit
3fbcde000c
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Reference in a new issue