Fixed const mix-match.

This commit is contained in:
Nathan Moinvaziri 2018-08-13 23:20:02 -07:00
parent 9a170d4d60
commit a8644a1de8
3 changed files with 7 additions and 7 deletions

View File

@ -61,10 +61,10 @@ static void mz_stream_mem_set_size(void *stream, int32_t size)
{
mz_stream_mem *mem = (mz_stream_mem *)stream;
int32_t new_size = size;
char *new_buf = NULL;
uint8_t *new_buf = NULL;
new_buf = (char *)MZ_ALLOC(new_size);
new_buf = (uint8_t *)MZ_ALLOC(new_size);
if (mem->buffer)
{
memcpy(new_buf, mem->buffer, mem->size);
@ -206,7 +206,7 @@ int32_t mz_stream_mem_error(void *stream)
return MZ_OK;
}
void mz_stream_mem_set_buffer(void *stream, const void *buf, int32_t size)
void mz_stream_mem_set_buffer(void *stream, void *buf, int32_t size)
{
mz_stream_mem *mem = (mz_stream_mem *)stream;
mem->buffer = (uint8_t *)buf;

View File

@ -447,7 +447,7 @@ int32_t mz_zip_reader_save_file(void *handle, const char *path)
return err;
}
int32_t mz_zip_reader_save_buffer(void *handle, const void *buf, int32_t len)
int32_t mz_zip_reader_save_buffer(void *handle, void *buf, int32_t len)
{
mz_zip_reader *reader = (mz_zip_reader *)handle;
void *mem_stream = NULL;
@ -940,7 +940,7 @@ int32_t mz_zip_writer_add_info(void *handle, void *stream, mz_stream_read_cb rea
return err;
}
int32_t mz_zip_writer_add_buffer(void *handle, const void *buf, int32_t len, mz_zip_file *file_info)
int32_t mz_zip_writer_add_buffer(void *handle, void *buf, int32_t len, mz_zip_file *file_info)
{
mz_zip_writer *writer = (mz_zip_writer *)handle;
void *mem_stream = NULL;

View File

@ -69,7 +69,7 @@ int32_t mz_zip_reader_save_process(void *handle, void *stream, mz_stream_write_c
int32_t mz_zip_reader_save_file(void *handle, const char *path);
// Save the current entry to a file
int32_t mz_zip_reader_save_buffer(void *handle, const void *buf, int32_t len);
int32_t mz_zip_reader_save_buffer(void *handle, void *buf, int32_t len);
// Save the current entry to a memory buffer
int32_t mz_zip_reader_save_buffer_length(void *handle);
@ -148,7 +148,7 @@ int32_t mz_zip_writer_add_process(void *handle, void *stream, mz_stream_read_cb
int32_t mz_zip_writer_add_info(void *handle, void *stream, mz_stream_read_cb read_cb, mz_zip_file *file_info);
// Adds an entry to the zip based on the info
int32_t mz_zip_writer_add_buffer(void *handle, const void *buf, int32_t len, mz_zip_file *file_info);
int32_t mz_zip_writer_add_buffer(void *handle, void *buf, int32_t len, mz_zip_file *file_info);
// Adds an entry to the zip with a memory buffer
int32_t mz_zip_writer_add_file(void *handle, const char *path, const char *filename_in_zip);