@@ -332,7 +332,7 @@ PHP_FUNCTION(enchant_broker_set_dict_path)
332332 char * value ;
333333 size_t value_len ;
334334
335- if (zend_parse_parameters (ZEND_NUM_ARGS (), "Ols " , & broker , enchant_broker_ce , & dict_type , & value , & value_len ) == FAILURE ) {
335+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "Olp " , & broker , enchant_broker_ce , & dict_type , & value , & value_len ) == FAILURE ) {
336336 RETURN_THROWS ();
337337 }
338338
@@ -429,7 +429,7 @@ PHP_FUNCTION(enchant_broker_request_dict)
429429 char * tag ;
430430 size_t taglen ;
431431
432- if (zend_parse_parameters (ZEND_NUM_ARGS (), "Os " , & broker , enchant_broker_ce , & tag , & taglen ) == FAILURE ) {
432+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "Op " , & broker , enchant_broker_ce , & tag , & taglen ) == FAILURE ) {
433433 RETURN_THROWS ();
434434 }
435435
@@ -523,7 +523,7 @@ PHP_FUNCTION(enchant_broker_dict_exists)
523523 size_t taglen ;
524524 enchant_broker * pbroker ;
525525
526- if (zend_parse_parameters (ZEND_NUM_ARGS (), "Os " , & broker , enchant_broker_ce , & tag , & taglen ) == FAILURE ) {
526+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "Op " , & broker , enchant_broker_ce , & tag , & taglen ) == FAILURE ) {
527527 RETURN_THROWS ();
528528 }
529529
@@ -548,7 +548,7 @@ PHP_FUNCTION(enchant_broker_set_ordering)
548548 size_t ptaglen ;
549549 enchant_broker * pbroker ;
550550
551- if (zend_parse_parameters (ZEND_NUM_ARGS (), "Oss " , & broker , enchant_broker_ce , & ptag , & ptaglen , & pordering , & porderinglen ) == FAILURE ) {
551+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "Opp " , & broker , enchant_broker_ce , & ptag , & ptaglen , & pordering , & porderinglen ) == FAILURE ) {
552552 RETURN_THROWS ();
553553 }
554554
@@ -586,7 +586,7 @@ PHP_FUNCTION(enchant_dict_quick_check)
586586 size_t wordlen ;
587587 enchant_dict * pdict ;
588588
589- if (zend_parse_parameters (ZEND_NUM_ARGS (), "Os |z" , & dict , enchant_dict_ce , & word , & wordlen , & sugg ) == FAILURE ) {
589+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "Op |z" , & dict , enchant_dict_ce , & word , & wordlen , & sugg ) == FAILURE ) {
590590 RETURN_THROWS ();
591591 }
592592
@@ -631,7 +631,7 @@ PHP_FUNCTION(enchant_dict_check)
631631 size_t wordlen ;
632632 enchant_dict * pdict ;
633633
634- if (zend_parse_parameters (ZEND_NUM_ARGS (), "Os " , & dict , enchant_dict_ce , & word , & wordlen ) == FAILURE ) {
634+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "Op " , & dict , enchant_dict_ce , & word , & wordlen ) == FAILURE ) {
635635 RETURN_THROWS ();
636636 }
637637
@@ -651,7 +651,7 @@ PHP_FUNCTION(enchant_dict_suggest)
651651 enchant_dict * pdict ;
652652 size_t n_sugg ;
653653
654- if (zend_parse_parameters (ZEND_NUM_ARGS (), "Os " , & dict , enchant_dict_ce , & word , & wordlen ) == FAILURE ) {
654+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "Op " , & dict , enchant_dict_ce , & word , & wordlen ) == FAILURE ) {
655655 RETURN_THROWS ();
656656 }
657657
@@ -679,7 +679,7 @@ PHP_FUNCTION(enchant_dict_add)
679679 size_t wordlen ;
680680 enchant_dict * pdict ;
681681
682- if (zend_parse_parameters (ZEND_NUM_ARGS (), "Os " , & dict , enchant_dict_ce , & word , & wordlen ) == FAILURE ) {
682+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "Op " , & dict , enchant_dict_ce , & word , & wordlen ) == FAILURE ) {
683683 RETURN_THROWS ();
684684 }
685685
@@ -697,7 +697,7 @@ PHP_FUNCTION(enchant_dict_add_to_session)
697697 size_t wordlen ;
698698 enchant_dict * pdict ;
699699
700- if (zend_parse_parameters (ZEND_NUM_ARGS (), "Os " , & dict , enchant_dict_ce , & word , & wordlen ) == FAILURE ) {
700+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "Op " , & dict , enchant_dict_ce , & word , & wordlen ) == FAILURE ) {
701701 RETURN_THROWS ();
702702 }
703703
@@ -715,7 +715,7 @@ PHP_FUNCTION(enchant_dict_is_added)
715715 size_t wordlen ;
716716 enchant_dict * pdict ;
717717
718- if (zend_parse_parameters (ZEND_NUM_ARGS (), "Os " , & dict , enchant_dict_ce , & word , & wordlen ) == FAILURE ) {
718+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "Op " , & dict , enchant_dict_ce , & word , & wordlen ) == FAILURE ) {
719719 RETURN_THROWS ();
720720 }
721721
@@ -737,7 +737,7 @@ PHP_FUNCTION(enchant_dict_store_replacement)
737737
738738 enchant_dict * pdict ;
739739
740- if (zend_parse_parameters (ZEND_NUM_ARGS (), "Oss " , & dict , enchant_dict_ce , & mis , & mislen , & cor , & corlen ) == FAILURE ) {
740+ if (zend_parse_parameters (ZEND_NUM_ARGS (), "Opp " , & dict , enchant_dict_ce , & mis , & mislen , & cor , & corlen ) == FAILURE ) {
741741 RETURN_THROWS ();
742742 }
743743
0 commit comments