diff options
author | 2019-03-10 14:23:18 +0530 | |
---|---|---|
committer | 2019-03-10 15:09:50 +0530 | |
commit | 59db99f75da4093e3d03daa9a7b51f33ae2878b9 (patch) | |
tree | 9485c7f7b2502bd0c92666cf7cd3f91aab57daa2 /src | |
parent | 8b1ef2d9d592487419f56b1086e34192d32094cd (diff) | |
download | nnn-59db99f75da4093e3d03daa9a7b51f33ae2878b9.tar.gz |
Fix build break
Diffstat (limited to 'src')
-rw-r--r-- | src/nnn.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -974,19 +974,18 @@ static bool initcurses(void) 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) { int count = 0; argv[count++] = line; - while (*line) { + while (*line) { // NOLINT if (isblank(*line)) { *line++ = '\0'; - if (!*line) + if (!*line) // NOLINT return count; argv[count++] = line; |