summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2010-07-20 09:34:32 -0700
committerJeremy Allison <jra@samba.org>2010-07-20 09:34:32 -0700
commitf5def289d3d66e41c0a7ace3145107123e4ea54f (patch)
treead88eab49d19f2db93ccbc12f2dcfc2128ae2808 /source3
parentc58aeaaf311d4b1ec50cd9a606969c5643dd1380 (diff)
downloadsamba-f5def289d3d66e41c0a7ace3145107123e4ea54f.tar.gz
samba-f5def289d3d66e41c0a7ace3145107123e4ea54f.tar.bz2
samba-f5def289d3d66e41c0a7ace3145107123e4ea54f.zip
Fix warning - no return value for a non-void fn.
Jeremy.
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/aio.c1
1 files changed, 1 insertions, 0 deletions
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);