diff options
author | Andrew Bartlett <abartlet@samba.org> | 2004-01-06 01:20:01 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2004-01-06 01:20:01 +0000 |
commit | 35f843a1be9a703328eee3241bc24416cca945e0 (patch) | |
tree | b18b2341122587d5aaeb31962b5f4ddce674882a /source3/torture/utable.c | |
parent | 870105d74fe814ae839ee4962d00381e78fbef20 (diff) | |
download | samba-35f843a1be9a703328eee3241bc24416cca945e0.tar.gz samba-35f843a1be9a703328eee3241bc24416cca945e0.tar.bz2 samba-35f843a1be9a703328eee3241bc24416cca945e0.zip |
(merge from 3.0)
I think this was tpot's originally:
Fix format types for 64 bit systems.
Andrew Bartlett
(This used to be commit 256b2da7c96e8313f4f98ce700fc7634eaccb72b)
Diffstat (limited to 'source3/torture/utable.c')
-rw-r--r-- | source3/torture/utable.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/torture/utable.c b/source3/torture/utable.c index 3ec5932b79..5d819cc6af 100644 --- a/source3/torture/utable.c +++ b/source3/torture/utable.c @@ -165,8 +165,8 @@ BOOL torture_casetable(int dummy) int c2[MAX_EQUIVALENCE]; if (size/sizeof(int) >= MAX_EQUIVALENCE) { - printf("too many chars match?? size=%d c=0x%04x\n", - size, c); + printf("too many chars match?? size=%ld c=0x%04x\n", + (unsigned long)size, c); cli_close(cli, fnum); return False; } |