소스 검색

Stop complaints on printf argument types on MacOS.

master
Richard Nyberg 16 년 전
부모
커밋
f0bd2f35ce
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. +2
    -2
      btpd/btpd.c

+ 2
- 2
btpd/btpd.c 파일 보기

@@ -107,8 +107,8 @@ btpd_init(void)
sigaction(SIGINT, &sa, NULL);

gettimeofday(&now, NULL);
n = snprintf(idcon, sizeof(idcon), "%ld%ld%d", now.tv_sec, now.tv_usec,
net_port);
n = snprintf(idcon, sizeof(idcon), "%ld%ld%d", (long)now.tv_sec,
(long)now.tv_usec, net_port);
if (n < sizeof(idcon))
gethostname(idcon + n, sizeof(idcon) - n);
idcon[sizeof(idcon) - 1] = '\0';


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