소스 검색

Fix build break

master
Arun Prakash Jana 6 년 전
부모
커밋
59db99f75d
No known key found for this signature in database 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;


||||||
x
 
000:0
불러오는 중...
취소
저장