I'm trying to write a simple wrapper for zlib-functions, all I need is an inflate and deflate method, so I'm using the example code (zpipe.c) and exchanging files with iostreams.
XCode gives me a strange error message, when I try to assign the buffer:
FileCompress.cpp:47:27: Assigning to 'Bytef *' (aka 'int *') from incompatible type 'char [1048576]'
The line is:
strm.next_in = in;
Am I doing something obviously wrong? 'strm' is a z_stream, and 'in' is an array of char (but the same happens with unsigned char).