Skip to content

Commit 6e3fae4

Browse files
committed
Merge branch 'PHP-5.5' into PHP-5.6
* PHP-5.5: fixed post deactivate signature in ext\libxml
2 parents 4d43e2e + c6f2581 commit 6e3fae4

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
@@ -88,7 +88,7 @@ static PHP_MINIT_FUNCTION(libxml);
8888
static PHP_RINIT_FUNCTION(libxml);
8989
static PHP_MSHUTDOWN_FUNCTION(libxml);
9090
static PHP_MINFO_FUNCTION(libxml);
91-
static int php_libxml_post_deactivate();
91+
static int php_libxml_post_deactivate(void);
9292

9393
/* }}} */
9494

@@ -876,7 +876,7 @@ static PHP_MSHUTDOWN_FUNCTION(libxml)
876876
return SUCCESS;
877877
}
878878

879-
static int php_libxml_post_deactivate()
879+
static int php_libxml_post_deactivate(void)
880880
{
881881
TSRMLS_FETCH();
882882
/* reset libxml generic error handling */

0 commit comments

Comments
 (0)