소스 검색

do not exit on failed smprintf

master
Aaron Marcher 8 년 전
committed by Aaron Marcher (drkhsh)
부모
커밋
db07244cb8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. +1
    -1
      slstatus.c

+ 1
- 1
slstatus.c 파일 보기

@@ -90,7 +90,7 @@ smprintf(const char *fmt, ...)
ret = malloc(++len);
if (ret == NULL) {
warn("Malloc failed.");
exit(1);
return "n/a";
}

va_start(ap, fmt);


불러오는 중...
취소
저장