remove EOF check

This commit is contained in:
onyx-and-iris 2024-06-26 20:17:33 +01:00
parent cd11b26ad8
commit 9863ca6dca

View File

@ -177,7 +177,7 @@ void interactive(T_VBVMR_INTERFACE *vmr)
char command[MAX_LINE];
int i = 0;
while (!isspace(*p) && *p != EOF)
while (!isspace(*p))
command[i++] = *p++;
command[i] = '\0';
p++; /* shift to next char */