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) ...@@ -154,9 +154,7 @@ VAV_ParseTxt(const char *b, const char *e, int *argc, int flag)
if (argv == NULL) if (argv == NULL)
return (NULL); return (NULL);
for (;;) { while (b < e) {
if (b >= e)
break;
if (isspace(*b)) { if (isspace(*b)) {
b++; b++;
continue; 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