From f5def289d3d66e41c0a7ace3145107123e4ea54f Mon Sep 17 00:00:00 2001 From: Jeremy Allison Date: Tue, 20 Jul 2010 09:34:32 -0700 Subject: Fix warning - no return value for a non-void fn. Jeremy. --- source3/smbd/aio.c | 1 + 1 file changed, 1 insertion(+) diff --git a/source3/smbd/aio.c b/source3/smbd/aio.c index dbce120dc6..b0755bb738 100644 --- a/source3/smbd/aio.c +++ b/source3/smbd/aio.c @@ -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); -- cgit