File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -1767,7 +1767,6 @@ PHP_FUNCTION(highlight_file)
1767
1767
{
1768
1768
char * filename ;
1769
1769
size_t filename_len ;
1770
- int ret ;
1771
1770
zend_syntax_highlighter_ini syntax_highlighter_ini_ptr ;
1772
1771
bool i = 0 ;
1773
1772
@@ -1787,7 +1786,7 @@ PHP_FUNCTION(highlight_file)
1787
1786
1788
1787
php_get_highlight_struct (& syntax_highlighter_ini_ptr );
1789
1788
1790
- ret = highlight_file (filename , & syntax_highlighter_ini_ptr );
1789
+ zend_result ret = highlight_file (filename , & syntax_highlighter_ini_ptr );
1791
1790
1792
1791
if (ret == FAILURE ) {
1793
1792
if (i ) {
Original file line number Diff line number Diff line change @@ -510,7 +510,7 @@ const zend_function_entry server_additional_functions[] = {
510
510
PHP_FE_END
511
511
};
512
512
513
- static int sapi_cli_server_startup (sapi_module_struct * sapi_module_to_start ) /* {{{ */
513
+ static zend_result sapi_cli_server_startup (sapi_module_struct * sapi_module_to_start ) /* {{{ */
514
514
{
515
515
return php_module_startup (sapi_module_to_start , & cli_server_module_entry );
516
516
} /* }}} */
You can’t perform that action at this time.
0 commit comments