浏览代码

Fix build break

master
Arun Prakash Jana 6 年前
父节点
当前提交
59db99f75d
找不到此签名对应的密钥 GPG 密钥 ID: A75979F35C080412
共有 1 个文件被更改,包括 3 次插入4 次删除
  1. +3
    -4
      src/nnn.c

+ 3
- 4
src/nnn.c 查看文件

@@ -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;


正在加载...
取消
保存