Fix warning - no return value for a non-void fn.
authorJeremy Allison <jra@samba.org>
Tue, 20 Jul 2010 16:34:32 +0000 (09:34 -0700)
committerJeremy Allison <jra@samba.org>
Tue, 20 Jul 2010 16:34:32 +0000 (09:34 -0700)
Jeremy.

source3/smbd/aio.c

index dbce120dc60c0dc17bad919ca90898674fea3583..b0755bb7383b640e7e4acd360b115a9ca4348075 100644 (file)
@@ -91,6 +91,7 @@ static bool initialize_async_io_handler(void)
 
        /* tevent supports 100 signal with SA_SIGINFO */
        aio_pending_size = 100;
+       return true;
 }
 
 static int handle_aio_read_complete(struct aio_extra *aio_ex, int errcode);