Skip to content

Commit 0c97fe0

Browse files
committed
Merge branch 'PHP-8.5'
* PHP-8.5: sapi/phpdbg: use 'h' ZPP specifier instead of'H'
2 parents f502493 + e1c8ed6 commit 0c97fe0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sapi/phpdbg/phpdbg.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -493,7 +493,7 @@ PHP_FUNCTION(phpdbg_get_executable)
493493
HashTable *files = &PHPDBG_G(file_sources);
494494
HashTable files_tmp;
495495

496-
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|H", &options) == FAILURE) {
496+
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|h", &options) == FAILURE) {
497497
RETURN_THROWS();
498498
}
499499

@@ -587,7 +587,7 @@ PHP_FUNCTION(phpdbg_end_oplog)
587587
bool by_function = false;
588588
bool by_opcode = false;
589589

590-
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|H", &options) == FAILURE) {
590+
if (zend_parse_parameters(ZEND_NUM_ARGS(), "|h", &options) == FAILURE) {
591591
RETURN_THROWS();
592592
}
593593

0 commit comments

Comments
 (0)