diff options
Diffstat (limited to 'ext/zip/php_zip.h')
-rw-r--r-- | ext/zip/php_zip.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/ext/zip/php_zip.h b/ext/zip/php_zip.h index 96390e025a..f28937ebe2 100644 --- a/ext/zip/php_zip.h +++ b/ext/zip/php_zip.h @@ -59,13 +59,14 @@ typedef struct _ze_zip_object { char *filename; int filename_len; int buffers_cnt; - zend_object zo; + zip_int64_t last_id; #ifdef HAVE_PROGRESS_CALLBACK zval progress_callback; #endif #ifdef HAVE_CANCEL_CALLBACK zval cancel_callback; #endif + zend_object zo; } ze_zip_object; static inline ze_zip_object *php_zip_fetch_object(zend_object *obj) { |