mirror of
https://github.com/jarun/nnn.git
synced 2024-11-28 05:41:31 +00:00
Fix build break
This commit is contained in:
parent
8b1ef2d9d5
commit
59db99f75d
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue