summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2005-09-12 21:50:32 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 11:03:36 -0500
commitc46b4cabf4ee02fc90b3b42c800926f55c7099be (patch)
tree0069a6ff127085550b62d9dc59e0ae3176588d40 /source3
parentab59cdc5803371faa7fd2d983f3dc796afceb007 (diff)
downloadsamba-c46b4cabf4ee02fc90b3b42c800926f55c7099be.tar.gz
samba-c46b4cabf4ee02fc90b3b42c800926f55c7099be.tar.bz2
samba-c46b4cabf4ee02fc90b3b42c800926f55c7099be.zip
r10188: 64-bit warning fix.
Jeremy. (This used to be commit 3b8a8e2947e4d956766e97bea8fa9c25210d1c19)
Diffstat (limited to 'source3')
-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 1deb4da269..8f9cc52882 100644
--- a/source3/smbd/process.c
+++ b/source3/smbd/process.c
@@ -897,7 +897,7 @@ static int switch_message(int type,char *inbuf,char *outbuf,int size,int bufsize
uint16 session_tag = (lp_security() == SEC_SHARE) ? UID_FIELD_INVALID : SVAL(inbuf,smb_uid);
connection_struct *conn = conn_find(SVAL(inbuf,smb_tid));
- DEBUG(3,("switch message %s (pid %d) conn 0x%x\n",smb_fn_name(type),(int)pid,(unsigned int)conn));
+ DEBUG(3,("switch message %s (pid %d) conn 0x%lx\n",smb_fn_name(type),(int)pid,(unsigned long)conn));
smb_dump(smb_fn_name(type), 1, inbuf, size);
if(global_oplock_break) {