fix datatype

This commit is contained in:
Anatol Belski 2017-07-10 17:34:58 +02:00
parent ad25234350
commit 07c7445dd0

View file

@ -48,7 +48,7 @@ typedef struct _php_zlib_buffer {
typedef struct _php_zlib_context { typedef struct _php_zlib_context {
z_stream Z; z_stream Z;
char *inflateDict; char *inflateDict;
size_t status; int status;
size_t inflateDictlen; size_t inflateDictlen;
php_zlib_buffer buffer; php_zlib_buffer buffer;
} php_zlib_context; } php_zlib_context;