summaryrefslogtreecommitdiff
path: root/source3/smbd/aio.c
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-07-25 18:53:16 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:28:59 -0500
commit115062e7cea8c265b9f910360ae3e8b9af4c95a8 (patch)
tree5d81a41794b12e8628f49fd89a8ebfe0ffb580e5 /source3/smbd/aio.c
parent70faa40a2dc67344d530dec8d12186cdf177ee4a (diff)
downloadsamba-115062e7cea8c265b9f910360ae3e8b9af4c95a8.tar.gz
samba-115062e7cea8c265b9f910360ae3e8b9af4c95a8.tar.bz2
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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/aio.c b/source3/smbd/aio.c
index afef36f61e..f4c4aaec41 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);