diff options
author | Volker Lendecke <vlendec@samba.org> | 2007-07-25 18:39:10 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:28:59 -0500 |
commit | e5cdc454aadf2d3d93d80524d2c84990f239aaa0 (patch) | |
tree | 1ddf9f7e0887aef5e985787af9d466f44ae008dc /source3/smbd/process.c | |
parent | 602271632a7f31463341e68ef96b58333d9c6715 (diff) | |
download | samba-e5cdc454aadf2d3d93d80524d2c84990f239aaa0.tar.gz samba-e5cdc454aadf2d3d93d80524d2c84990f239aaa0.tar.bz2 samba-e5cdc454aadf2d3d93d80524d2c84990f239aaa0.zip |
r24046: Fix a 64-bit warning
(This used to be commit a2ecc34aa43f810e68815c25016da1d184a21a04)
Diffstat (limited to 'source3/smbd/process.c')
-rw-r--r-- | source3/smbd/process.c | 2 |
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) { /* |