(retroarch.c) Another C89 fix

This commit is contained in:
twinaphex 2015-06-26 20:35:02 +02:00
parent 0292f5c9b3
commit b421778e50

View File

@ -581,9 +581,10 @@ static void parse_input(int argc, char *argv[])
for (;;)
{
int port;
val = 0;
int c = getopt_long(argc, argv, optstring, opts, NULL);
val = 0;
if (c == -1)
break;