Skip to content

Commit fb721ce

Browse files
committed
fixed post deactivate signature in ext\libxml
1 parent 5c964fb commit fb721ce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/libxml/libxml.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ static PHP_MINIT_FUNCTION(libxml);
8787
static PHP_RINIT_FUNCTION(libxml);
8888
static PHP_MSHUTDOWN_FUNCTION(libxml);
8989
static PHP_MINFO_FUNCTION(libxml);
90-
static int php_libxml_post_deactivate();
90+
static int php_libxml_post_deactivate(void);
9191

9292
/* }}} */
9393

@@ -869,7 +869,7 @@ static PHP_MSHUTDOWN_FUNCTION(libxml)
869869
return SUCCESS;
870870
}
871871

872-
static int php_libxml_post_deactivate()
872+
static int php_libxml_post_deactivate(void)
873873
{
874874
TSRMLS_FETCH();
875875
/* reset libxml generic error handling */

0 commit comments

Comments
 (0)