summaryrefslogtreecommitdiff
path: root/source3/torture/utable.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2003-11-06 22:11:08 +0000
committerTim Potter <tpot@samba.org>2003-11-06 22:11:08 +0000
commit9f154119e8788e9c3525b0a61c64326abd35bdf6 (patch)
tree414bdc61c7c31ec78380466cab989a1c2b814bd3 /source3/torture/utable.c
parent75b246906323a9c6dba6c73041882d4ddebe7577 (diff)
downloadsamba-9f154119e8788e9c3525b0a61c64326abd35bdf6.tar.gz
samba-9f154119e8788e9c3525b0a61c64326abd35bdf6.tar.bz2
samba-9f154119e8788e9c3525b0a61c64326abd35bdf6.zip
Final round of printf warnings fixes for the moment.
(This used to be commit 0519a7022b4979c0e8ddd4907f4b858a59299c06)
Diffstat (limited to 'source3/torture/utable.c')
-rw-r--r--source3/torture/utable.c4
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;
}