From 15543f18acc9040fd3213e826147fe5604bb1ae1 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 29 Nov 2004 12:01:46 +0000 Subject: r4000: DATA_BLOB.data is uint8_t * not void * :-) (thanks abartlet for telling me) metze (This used to be commit 2783bf393f6310f9d827538329d619dad5b02dd0) --- source4/torture/local/messaging.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture/local/messaging.c') diff --git a/source4/torture/local/messaging.c b/source4/torture/local/messaging.c index 1bf8de15fe..9c6f55a6c4 100644 --- a/source4/torture/local/messaging.c +++ b/source4/torture/local/messaging.c @@ -91,7 +91,7 @@ static BOOL test_ping_speed(TALLOC_CTX *mem_ctx) DATA_BLOB data; NTSTATUS status1, status2; - data.data = discard_const_p(void, "testing"); + data.data = discard_const_p(uint8_t, "testing"); data.length = strlen((const char *)data.data); status1 = messaging_send(msg_ctx, 1, MY_PING, &data); -- cgit