diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-07-25 18:53:16 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:28:59 -0500 |
commit | 115062e7cea8c265b9f910360ae3e8b9af4c95a8 (patch) | |
tree | 5d81a41794b12e8628f49fd89a8ebfe0ffb580e5 /source3/smbd/aio.c | |
parent | 70faa40a2dc67344d530dec8d12186cdf177ee4a (diff) | |
download | samba-115062e7cea8c265b9f910360ae3e8b9af4c95a8.tar.gz samba-115062e7cea8c265b9f910360ae3e8b9af4c95a8.tar.xz samba-115062e7cea8c265b9f910360ae3e8b9af4c95a8.zip |
r24049: Some more 64-bit warnings
(This used to be commit eabe796e464e5fe10d0f4cca1362985c529f5a5b)
Diffstat (limited to 'source3/smbd/aio.c')
-rw-r--r-- | source3/smbd/aio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/aio.c b/source3/smbd/aio.c index afef36f61e0..f4c4aaec410 100644 --- a/source3/smbd/aio.c +++ b/source3/smbd/aio.c @@ -415,7 +415,7 @@ static int handle_aio_read_complete(struct aio_extra *aio_ex) DEBUG( 3, ( "handle_aio_read_complete file %s max=%d " "nread=%d\n", aio_ex->fsp->fsp_name, - aio_ex->acb.aio_nbytes, (int)nread ) ); + (int)aio_ex->acb.aio_nbytes, (int)nread ) ); } smb_setlen(inbuf,outbuf,outsize - 4); |