From 91597c12fb593f49b23c7cea5b64dbb89a0428b3 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Thu, 8 Oct 1998 06:21:33 +0000 Subject: - fixed a bunch of warnings and minor errors - got smbtorture to compile - removed %D from some of lukes code - Luke, what is %D? it ain't portable anyway --- source/smbd/dir.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source/smbd/dir.c') diff --git a/source/smbd/dir.c b/source/smbd/dir.c index da907b27a20..4b1a58016c0 100644 --- a/source/smbd/dir.c +++ b/source/smbd/dir.c @@ -356,7 +356,7 @@ BOOL dptr_fill(char *buf1,unsigned int key) } offset = TellDir(p); DEBUG(6,("fill on key %ld dirptr 0x%x now at %d\n",key, - (long)p,offset)); + (long)p,(int)offset)); buf[0] = key; SIVAL(buf,1,offset | DPTR_MASK); return(True); -- cgit