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/denytest.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/denytest.c')
-rw-r--r-- | source3/torture/denytest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/torture/denytest.c b/source3/torture/denytest.c index 3a7906fb33..89b0fdf93f 100644 --- a/source3/torture/denytest.c +++ b/source3/torture/denytest.c @@ -1427,7 +1427,7 @@ BOOL torture_denytest1(int dummy) cli_close(cli1, fnum1); } - printf("testing %d entries\n", ARRAY_SIZE(denytable1)); + printf("testing %ld entries\n", (unsigned long)ARRAY_SIZE(denytable1)); for (i=0; i<ARRAY_SIZE(denytable1); i++) { enum deny_result res; |