diff options
author | Jeremy Allison <jra@samba.org> | 2010-07-20 09:34:32 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2010-07-20 09:34:32 -0700 |
commit | f5def289d3d66e41c0a7ace3145107123e4ea54f (patch) | |
tree | ad88eab49d19f2db93ccbc12f2dcfc2128ae2808 /source3/smbd | |
parent | c58aeaaf311d4b1ec50cd9a606969c5643dd1380 (diff) | |
download | samba-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/smbd')
-rw-r--r-- | source3/smbd/aio.c | 1 |
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); |