diff options
Diffstat (limited to 'source4')
-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 e5f81f5eea..17e5ce8f75 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(void *data, uint_t num_eas, struct ea_struct *eas) +void ea_put_list(uint8_t *data, uint_t num_eas, struct ea_struct *eas) { int i; uint32_t ea_size; @@ -83,7 +83,7 @@ void ea_put_list(void *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(void *data, uint_t num_eas, struct ea_struct *eas) +void ea_put_list_chained(uint8_t *data, uint_t num_eas, struct ea_struct *eas) { int i; |