mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Use bool instead of int in _phar_zip_pass
This commit is contained in:
parent
7b60f53f07
commit
07e1bcae2f
1 changed files with 2 additions and 2 deletions
|
@ -860,9 +860,9 @@ struct _phar_zip_pass {
|
|||
php_stream *filefp;
|
||||
php_stream *centralfp;
|
||||
php_stream *old;
|
||||
int free_fp;
|
||||
int free_ufp;
|
||||
char **error;
|
||||
bool free_fp;
|
||||
bool free_ufp;
|
||||
};
|
||||
/* perform final modification of zip contents for each file in the manifest before saving */
|
||||
static int phar_zip_changed_apply_int(phar_entry_info *entry, void *arg) /* {{{ */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue