test-bind-error: fix 'control reaches end of non-void function'

This commit is contained in:
Ben Noordhuis 2011-07-19 13:46:03 +02:00
parent 7cc527997f
commit c2ad51e39f

View File

@ -199,4 +199,6 @@ TEST_IMPL(listen_without_bind) {
ASSERT(r == 0);
r = uv_tcp_listen(&server, 128, NULL);
ASSERT(r == 0);
return 0;
}