Fix for platforms which don't size void *.

This commit is contained in:
Marshall T. Vandegrift 2008-12-17 18:18:54 -05:00
parent 565dc2821f
commit ebf36bca33

View File

@ -21,7 +21,7 @@
+ ((compressor)->input.size - (compressor)->input.offset)) + ((compressor)->input.size - (compressor)->input.offset))
typedef struct buffer_t { typedef struct buffer_t {
void *data; unsigned char *data;
unsigned int size; unsigned int size;
unsigned int offset; unsigned int offset;
} buffer_t; } buffer_t;