summaryrefslogtreecommitdiff
path: root/source3/smbd/dir.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1998-10-08 21:54:26 +0000
committerAndrew Tridgell <tridge@samba.org>1998-10-08 21:54:26 +0000
commit3a4a2d56befe66e16003a46432ae77f6b6d62c8d (patch)
treecdae1f09a6f1c628bf1894a539eb57ce9623a9b7 /source3/smbd/dir.c
parentfa03e9984257bad10b50fc12e396b277b9586ac6 (diff)
downloadsamba-3a4a2d56befe66e16003a46432ae77f6b6d62c8d.tar.gz
samba-3a4a2d56befe66e16003a46432ae77f6b6d62c8d.tar.bz2
samba-3a4a2d56befe66e16003a46432ae77f6b6d62c8d.zip
fixed a warning
(This used to be commit d4291d353b293bbc65fb0bf76c2d943733297726)
Diffstat (limited to 'source3/smbd/dir.c')
-rw-r--r--source3/smbd/dir.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/dir.c b/source3/smbd/dir.c
index 4b1a58016c..5b7b08b476 100644
--- a/source3/smbd/dir.c
+++ b/source3/smbd/dir.c
@@ -355,7 +355,7 @@ BOOL dptr_fill(char *buf1,unsigned int key)
return(False);
}
offset = TellDir(p);
- DEBUG(6,("fill on key %ld dirptr 0x%x now at %d\n",key,
+ DEBUG(6,("fill on key %ld dirptr 0x%lx now at %d\n",key,
(long)p,(int)offset));
buf[0] = key;
SIVAL(buf,1,offset | DPTR_MASK);