Fix build break

This commit is contained in:
Arun Prakash Jana 2019-03-10 14:23:18 +05:30
parent 8b1ef2d9d5
commit 59db99f75d
No known key found for this signature in database
GPG Key ID: A75979F35C080412
1 changed files with 3 additions and 4 deletions

View File

@ -974,19 +974,18 @@ static bool initcurses(void)
return TRUE; return TRUE;
} }
/* NOTE: There's no NULL check here */ /* No NULL check here as spawn() guards against it */
static int parseargs(char *line, char **argv) static int parseargs(char *line, char **argv)
{ {
int count = 0; int count = 0;
argv[count++] = line; argv[count++] = line;
while (*line) { while (*line) { // NOLINT
if (isblank(*line)) { if (isblank(*line)) {
*line++ = '\0'; *line++ = '\0';
if (!*line) if (!*line) // NOLINT
return count; return count;
argv[count++] = line; argv[count++] = line;