diff options
author | Andrew Bartlett <abartlet@samba.org> | 2007-08-23 02:10:17 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 15:02:27 -0500 |
commit | dfa4e5f78440e375a9c47eab913c5980c1aa640b (patch) | |
tree | 496a2c84d63e79db71181f9383177ca82b322588 /source4/smbd | |
parent | 32ce9de932c3f08b728bd9c743c70d702dc68a88 (diff) | |
download | samba-dfa4e5f78440e375a9c47eab913c5980c1aa640b.tar.gz samba-dfa4e5f78440e375a9c47eab913c5980c1aa640b.tar.bz2 samba-dfa4e5f78440e375a9c47eab913c5980c1aa640b.zip |
r24631: Fix up format warnings, found on my Fedora 7 x86_64 workstation.
Andrew Bartlett
(This used to be commit 3d74d178bfd89127ff387939e848b240e638cc35)
Diffstat (limited to 'source4/smbd')
-rw-r--r-- | source4/smbd/server.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/smbd/server.c b/source4/smbd/server.c index d164c5054a..7731db85f8 100644 --- a/source4/smbd/server.c +++ b/source4/smbd/server.c @@ -256,7 +256,7 @@ static int binary_smbd_main(const char *binary_name, int argc, const char *argv[ if (sizeof(uint16_t) < 2 || sizeof(uint32_t) < 4 || sizeof(uint64_t) < 8) { DEBUG(0,("ERROR: Samba is not configured correctly for the word size on your machine\n")); DEBUGADD(0,("sizeof(uint16_t) = %u, sizeof(uint32_t) %u, sizeof(uint64_t) = %u\n", - sizeof(uint16_t), sizeof(uint32_t), sizeof(uint64_t))); + (unsigned int)sizeof(uint16_t), (unsigned int)sizeof(uint32_t), (unsigned int)sizeof(uint64_t))); exit(1); } |