diff options
author | Tim Potter <tpot@samba.org> | 2003-11-06 22:11:08 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-11-06 22:11:08 +0000 |
commit | 0519a7022b4979c0e8ddd4907f4b858a59299c06 (patch) | |
tree | 72ef2bd6464e6bd722ac260f56cca3d71bafa008 /source/torture/torture.c | |
parent | 3c19ac5f1c9e393780e57028808871dfdc77b170 (diff) | |
download | samba-0519a7022b4979c0e8ddd4907f4b858a59299c06.tar.gz samba-0519a7022b4979c0e8ddd4907f4b858a59299c06.tar.xz samba-0519a7022b4979c0e8ddd4907f4b858a59299c06.zip |
Final round of printf warnings fixes for the moment.
Diffstat (limited to 'source/torture/torture.c')
-rw-r--r-- | source/torture/torture.c | 24 |
1 files changed, 14 insertions, 10 deletions
diff --git a/source/torture/torture.c b/source/torture/torture.c index d20c48d6454..bf3f0c6194d 100644 --- a/source/torture/torture.c +++ b/source/torture/torture.c @@ -427,9 +427,9 @@ static BOOL rw_torture3(struct cli_state *c, char *lockfname) sizeof(buf)-count); if (sent < 0) { - printf("read failed offset:%d size:%d (%s)\n", - count, sizeof(buf)-count, - cli_errstr(c)); + printf("read failed offset:%d size:%ld (%s)\n", + count, (unsigned long)sizeof(buf)-count, + cli_errstr(c)); correct = False; sent = 0; } @@ -438,8 +438,7 @@ static BOOL rw_torture3(struct cli_state *c, char *lockfname) if (memcmp(buf_rd+count, buf+count, sent) != 0) { printf("read/write compare failed\n"); - printf("offset: %d req %d recvd %d\n", - count, sizeof(buf)-count, sent); + printf("offset: %d req %ld recvd %ld\n", count, (unsigned long)sizeof(buf)-count, (unsigned long)sent); correct = False; break; } @@ -504,7 +503,8 @@ static BOOL rw_torture2(struct cli_state *c1, struct cli_state *c2) if ((bytes_read = cli_read(c2, fnum2, buf_rd, 0, buf_size)) != buf_size) { printf("read failed (%s)\n", cli_errstr(c2)); - printf("read %d, expected %d\n", bytes_read, buf_size); + printf("read %d, expected %ld\n", bytes_read, + (unsigned long)buf_size); correct = False; break; } @@ -620,9 +620,11 @@ static BOOL run_readwritelarge(int dummy) } if (fsize == sizeof(buf)) - printf("readwritelarge test 1 succeeded (size = %x)\n", fsize); + printf("readwritelarge test 1 succeeded (size = %lx)\n", + (unsigned long)fsize); else { - printf("readwritelarge test 1 failed (size = %x)\n", fsize); + printf("readwritelarge test 1 failed (size = %lx)\n", + (unsigned long)fsize); correct = False; } @@ -652,9 +654,11 @@ static BOOL run_readwritelarge(int dummy) } if (fsize == sizeof(buf)) - printf("readwritelarge test 2 succeeded (size = %x)\n", fsize); + printf("readwritelarge test 2 succeeded (size = %lx)\n", + (unsigned long)fsize); else { - printf("readwritelarge test 2 failed (size = %x)\n", fsize); + printf("readwritelarge test 2 failed (size = %lx)\n", + (unsigned long)fsize); correct = False; } |