uv-unix: fix warning: no return statement in function returning non-void

This commit is contained in:
Ben Noordhuis 2011-07-13 23:21:29 +02:00
parent aad95b841e
commit e364dd15c1

View File

@ -1435,6 +1435,8 @@ static uv_ares_task_t* uv__ares_task_create(int fd) {
h->read_watcher.data = h;
h->write_watcher.data = h;
return h;
}