From 7aeebaa96246660ab30c985859ea6b4323ea371f Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Mon, 22 Nov 2004 08:15:27 +0000 Subject: r3902: fix compiler warnings metze (This used to be commit ce7686ac3e15b0d52ef01bd8bd773641c8ce2e35) --- source4/libcli/raw/raweas.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/libcli/raw/raweas.c') diff --git a/source4/libcli/raw/raweas.c b/source4/libcli/raw/raweas.c index 5bd90766aa..e5f81f5eea 100644 --- a/source4/libcli/raw/raweas.c +++ b/source4/libcli/raw/raweas.c @@ -57,7 +57,7 @@ uint_t ea_list_size_chained(uint_t num_eas, struct ea_struct *eas) put a ea_list into a pre-allocated buffer - buffer must be at least of size ea_list_size() */ -void ea_put_list(char *data, uint_t num_eas, struct ea_struct *eas) +void ea_put_list(void *data, uint_t num_eas, struct ea_struct *eas) { int i; uint32_t ea_size; @@ -83,7 +83,7 @@ void ea_put_list(char *data, uint_t num_eas, struct ea_struct *eas) put a chained ea_list into a pre-allocated buffer - buffer must be at least of size ea_list_size() */ -void ea_put_list_chained(char *data, uint_t num_eas, struct ea_struct *eas) +void ea_put_list_chained(void *data, uint_t num_eas, struct ea_struct *eas) { int i; -- cgit