Skip to content

Commit 13419be

Browse files
committed
Merge branch 'PHP-7.4' into master
* PHP-7.4: Fix wrong datatype
2 parents 8c57474 + 8f9f308 commit 13419be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Zend/zend_ini.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ ZEND_API int zend_alter_ini_entry_ex(zend_string *name, zend_string *new_value,
315315
{
316316
zend_ini_entry *ini_entry;
317317
zend_string *duplicate;
318-
zend_bool modifiable;
318+
uint8_t modifiable;
319319
zend_bool modified;
320320

321321
if ((ini_entry = zend_hash_find_ptr(EG(ini_directives), name)) == NULL) {

0 commit comments

Comments
 (0)