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 @@ -936,7 +936,7 @@ static void php_openssl_dispose_config(struct php_x509_request * req) /* {{{ */
936
936
#else
937
937
#define PHP_OPENSSL_RAND_ADD_TIME () php_openssl_rand_add_timeval()
938
938
939
- static inline void php_openssl_rand_add_timeval () /* {{{ */
939
+ static inline void php_openssl_rand_add_timeval (void ) /* {{{ */
940
940
{
941
941
struct timeval tv ;
942
942
Original file line number Diff line number Diff line change @@ -965,14 +965,14 @@ PHPAPI void php_pcre_free_match_data(pcre2_match_data *match_data)
965
965
}
966
966
}/*}}}*/
967
967
968
- static void init_unmatched_null_pair () {
968
+ static void init_unmatched_null_pair (void ) {
969
969
zval val1 , val2 ;
970
970
ZVAL_NULL (& val1 );
971
971
ZVAL_LONG (& val2 , -1 );
972
972
ZVAL_ARR (& PCRE_G (unmatched_null_pair ), zend_new_pair (& val1 , & val2 ));
973
973
}
974
974
975
- static void init_unmatched_empty_pair () {
975
+ static void init_unmatched_empty_pair (void ) {
976
976
zval val1 , val2 ;
977
977
ZVAL_EMPTY_STRING (& val1 );
978
978
ZVAL_LONG (& val2 , -1 );
You can’t perform that action at this time.
0 commit comments