소스 검색

Fix warning on no return value from non-void function.

There was a warning at the end of addrinfo_td because it returns
a "void *" but had no return statement.  The fix was call pthread_exit().
master
Marq Schneider 14 년 전
부모
커밋
2810f88532
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. +1
    -0
      btpd/addrinfo.c

+ 1
- 0
btpd/addrinfo.c 파일 보기

@@ -76,6 +76,7 @@ addrinfo_td(void *arg)
td_post(addrinfo_td_cb, ctx);
td_post_end();
}
pthread_exit(NULL);
}

static void


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