File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -942,7 +942,7 @@ static void php_openssl_dispose_config(struct php_x509_request * req) /* {{{ */
942
942
#else
943
943
#define PHP_OPENSSL_RAND_ADD_TIME () php_openssl_rand_add_timeval()
944
944
945
- static inline void php_openssl_rand_add_timeval () /* {{{ */
945
+ static inline void php_openssl_rand_add_timeval (void ) /* {{{ */
946
946
{
947
947
struct timeval tv ;
948
948
Original file line number Diff line number Diff line change @@ -946,14 +946,14 @@ PHPAPI void php_pcre_free_match_data(pcre2_match_data *match_data)
946
946
}
947
947
}/*}}}*/
948
948
949
- static void init_unmatched_null_pair () {
949
+ static void init_unmatched_null_pair (void ) {
950
950
zval val1 , val2 ;
951
951
ZVAL_NULL (& val1 );
952
952
ZVAL_LONG (& val2 , -1 );
953
953
ZVAL_ARR (& PCRE_G (unmatched_null_pair ), zend_new_pair (& val1 , & val2 ));
954
954
}
955
955
956
- static void init_unmatched_empty_pair () {
956
+ static void init_unmatched_empty_pair (void ) {
957
957
zval val1 , val2 ;
958
958
ZVAL_EMPTY_STRING (& val1 );
959
959
ZVAL_LONG (& val2 , -1 );
You can’t perform that action at this time.
0 commit comments