darwin: fix ios compiler warning

uv__fsevents_loop_delete() returns void. Remove the 'return 0'
statement.
This commit is contained in:
Ben Noordhuis 2013-08-19 13:26:20 +02:00
parent b03192ed6f
commit 12bad62add

View File

@ -36,7 +36,6 @@ int uv__fsevents_close(uv_fs_event_t* handle) {
void uv__fsevents_loop_delete(uv_loop_t* loop) {
return 0;
}
#else /* TARGET_OS_IPHONE */