summaryrefslogtreecommitdiffstats
path: root/source/smbd/reply.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>1998-09-18 00:30:28 +0000
committerJeremy Allison <jra@samba.org>1998-09-18 00:30:28 +0000
commit14c134e8316687aa5a4ee089c2acfa6428faceae (patch)
tree5abd5941e656acae1df707675df09f77169fbc57 /source/smbd/reply.c
parentc22c40f0caa7d6a9e8120e6415fa728db708db3e (diff)
downloadsamba-14c134e8316687aa5a4ee089c2acfa6428faceae.tar.gz
samba-14c134e8316687aa5a4ee089c2acfa6428faceae.tar.xz
samba-14c134e8316687aa5a4ee089c2acfa6428faceae.zip
include/includes.h:
lib/system.c: Can't assume every system has a statvfs varient. Return -1 for those that don't. smbd/reply.c: Fixed printf warning. Jeremy.
Diffstat (limited to 'source/smbd/reply.c')
-rw-r--r--source/smbd/reply.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/reply.c b/source/smbd/reply.c
index 93beb12af38..c4aadb9dad6 100644
--- a/source/smbd/reply.c
+++ b/source/smbd/reply.c
@@ -932,7 +932,7 @@ int reply_dskattr(connection_struct *conn, char *inbuf,char *outbuf, int dum_siz
SSVAL(outbuf,smb_vwv2,512);
SSVAL(outbuf,smb_vwv3,dfree);
- DEBUG(3,("dskattr dfree=%d\n", dfree));
+ DEBUG(3,("dskattr dfree=%d\n", (unsigned int)dfree));
return(outsize);
}