Skip to content

Commit c6f2581

Browse files
committed
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4: fixed post deactivate signature in ext\libxml
2 parents 09eb3cf + fb721ce commit c6f2581

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: ext/libxml/libxml.c

+2-2
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

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

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

0 commit comments

Comments
 (0)