Author: vlendec Date: 2007-07-25 18:39:10 +0000 (Wed, 25 Jul 2007) New Revision: 24046
WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=24046 Log: Fix a 64-bit warning Modified: branches/SAMBA_3_2/source/smbd/process.c Changeset: Modified: branches/SAMBA_3_2/source/smbd/process.c =================================================================== --- branches/SAMBA_3_2/source/smbd/process.c 2007-07-25 13:50:37 UTC (rev 24045) +++ branches/SAMBA_3_2/source/smbd/process.c 2007-07-25 18:39:10 UTC (rev 24046) @@ -1224,7 +1224,7 @@ 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) { /*
