summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2007-07-25 18:39:10 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:28:59 -0500
commite5cdc454aadf2d3d93d80524d2c84990f239aaa0 (patch)
tree1ddf9f7e0887aef5e985787af9d466f44ae008dc
parent602271632a7f31463341e68ef96b58333d9c6715 (diff)
downloadsamba-e5cdc454aadf2d3d93d80524d2c84990f239aaa0.tar.gz
samba-e5cdc454aadf2d3d93d80524d2c84990f239aaa0.tar.bz2
samba-e5cdc454aadf2d3d93d80524d2c84990f239aaa0.zip
r24046: Fix a 64-bit warning
(This used to be commit a2ecc34aa43f810e68815c25016da1d184a21a04)
-rw-r--r--source3/smbd/process.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/process.c b/source3/smbd/process.c
index 41ca060d56..1159589e8d 100644
--- a/source3/smbd/process.c
+++ b/source3/smbd/process.c
@@ -1224,7 +1224,7 @@ static void process_smb(char *inbuf, size_t nread)
DEBUG( 6, ( "got message type 0x%x of len 0x%x\n", msg_type,
smb_len(inbuf) ) );
- DEBUG( 3, ( "Transaction %d of length %d\n", trans_num, nread ) );
+ DEBUG( 3, ( "Transaction %d of length %d\n", trans_num, (int)nread ) );
if (msg_type != 0) {
/*