Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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).

share|improve this question
You need to show more of the code. Like the declaration of in and strm. – Mark Adler Nov 16 '12 at 2:37

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.