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 @@ -964,14 +964,14 @@ PHPAPI void php_pcre_free_match_data(pcre2_match_data *match_data)
964
964
}
965
965
}/*}}}*/
966
966
967
- static void init_unmatched_null_pair () {
967
+ static void init_unmatched_null_pair (void ) {
968
968
zval val1 , val2 ;
969
969
ZVAL_NULL (& val1 );
970
970
ZVAL_LONG (& val2 , -1 );
971
971
ZVAL_ARR (& PCRE_G (unmatched_null_pair ), zend_new_pair (& val1 , & val2 ));
972
972
}
973
973
974
- static void init_unmatched_empty_pair () {
974
+ static void init_unmatched_empty_pair (void ) {
975
975
zval val1 , val2 ;
976
976
ZVAL_EMPTY_STRING (& val1 );
977
977
ZVAL_LONG (& val2 , -1 );
You can’t perform that action at this time.
0 commit comments