Commit e2286dfb authored by Dridi Boukelmoune's avatar Dridi Boukelmoune

vav: Fold main loop condition

parent 2fd5e922
......@@ -154,9 +154,7 @@ VAV_ParseTxt(const char *b, const char *e, int *argc, int flag)
if (argv == NULL)
return (NULL);
for (;;) {
if (b >= e)
break;
while (b < e) {
if (isspace(*b)) {
b++;
continue;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment