From e5cdc454aadf2d3d93d80524d2c84990f239aaa0 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Wed, 25 Jul 2007 18:39:10 +0000 Subject: r24046: Fix a 64-bit warning (This used to be commit a2ecc34aa43f810e68815c25016da1d184a21a04) --- source3/smbd/process.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { /* -- cgit