diff options
author | Stefan Metzmacher <metze@samba.org> | 2004-11-22 08:15:27 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:06:03 -0500 |
commit | 7aeebaa96246660ab30c985859ea6b4323ea371f (patch) | |
tree | 9a2cb5c863998121a5382312bb5d075737f1fc8e | |
parent | 243b314a231f0044ceee81728a0a1deb71c58283 (diff) | |
download | samba-7aeebaa96246660ab30c985859ea6b4323ea371f.tar.gz samba-7aeebaa96246660ab30c985859ea6b4323ea371f.tar.bz2 samba-7aeebaa96246660ab30c985859ea6b4323ea371f.zip |
r3902: fix compiler warnings
metze
(This used to be commit ce7686ac3e15b0d52ef01bd8bd773641c8ce2e35)
-rw-r--r-- | source4/libcli/raw/raweas.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |