Silence another signed/unsigned warning

This commit is contained in:
twinaphex 2017-02-21 19:36:43 +01:00
parent e3ddb75a2a
commit 63eafbcac2

View File

@ -2994,7 +2994,7 @@ static int menu_displaylist_parse_netplay_room_list(
if (netplay_room_count > 0)
{
unsigned i;
for (i = 0; i < netplay_room_count; i++)
for (i = 0; i < (unsigned)netplay_room_count; i++)
{
char s[PATH_MAX_LENGTH];