From a920f2f9a8e4ee076471c293765ed0bee13d4cc5 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Wed, 18 Jan 2006 16:20:33 +0000 Subject: r13004: fix compiler warnings metze (This used to be commit 833efdf8a943b210ba8e5b219dc754260001bedb) --- source4/torture/raw/composite.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/torture/raw/composite.c') diff --git a/source4/torture/raw/composite.c b/source4/torture/raw/composite.c index 760d464fb5..6025c3d1e4 100644 --- a/source4/torture/raw/composite.c +++ b/source4/torture/raw/composite.c @@ -48,7 +48,7 @@ static BOOL test_loadfile(struct smbcli_state *cli, TALLOC_CTX *mem_ctx) struct smb_composite_savefile io1; struct smb_composite_loadfile io2; struct composite_context **c; - char *data; + uint8_t *data; size_t len = random() % 100000; const int num_ops = 50; int i; @@ -124,7 +124,7 @@ static BOOL test_fetchfile(struct smbcli_state *cli, TALLOC_CTX *mem_ctx) struct smb_composite_savefile io1; struct smb_composite_fetchfile io2; struct composite_context **c; - char *data; + uint8_t *data; int i; size_t len = random() % 10000; extern int torture_numops; -- cgit