uxncli: stop on EOF as there is nothing left to run (besides endless loop)
This commit is contained in:
parent
dd107933fe
commit
7ff69378c8
|
@ -61,7 +61,8 @@ main(int argc, char **argv)
|
||||||
}
|
}
|
||||||
while(!u.dev[0x0f]) {
|
while(!u.dev[0x0f]) {
|
||||||
int c = fgetc(stdin);
|
int c = fgetc(stdin);
|
||||||
if(c != EOF) console_input(&u, (Uint8)c, CONSOLE_STD);
|
if(c == EOF) break;
|
||||||
|
console_input(&u, (Uint8)c, CONSOLE_STD);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
free(u.ram);
|
free(u.ram);
|
||||||
|
|
Loading…
Reference in New Issue