uv-unix: fix warning: control reaches end of non-void function

This commit is contained in:
Ben Noordhuis 2011-07-13 23:44:25 +02:00
parent e364dd15c1
commit f560f75a17

View File

@ -1325,6 +1325,7 @@ int uv_async_init(uv_async_t* async, uv_async_cb async_cb) {
int uv_async_send(uv_async_t* async) {
ev_async_send(EV_DEFAULT_UC_ &async->async_watcher);
return 0;
}