Skip to content

Commit 07e1bca

Browse files
committed
Use bool instead of int in _phar_zip_pass
1 parent 7b60f53 commit 07e1bca

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/phar/zip.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -860,9 +860,9 @@ struct _phar_zip_pass {
860860
php_stream *filefp;
861861
php_stream *centralfp;
862862
php_stream *old;
863-
int free_fp;
864-
int free_ufp;
865863
char **error;
864+
bool free_fp;
865+
bool free_ufp;
866866
};
867867
/* perform final modification of zip contents for each file in the manifest before saving */
868868
static int phar_zip_changed_apply_int(phar_entry_info *entry, void *arg) /* {{{ */

0 commit comments

Comments
 (0)