Skip to content

Commit

Permalink
Try to fix windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
nikic committed Sep 3, 2020
1 parent 94fd52d commit 42a6ff4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ext/libxml/libxml.c
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ static PHP_RINIT_FUNCTION(libxml);
static PHP_RSHUTDOWN_FUNCTION(libxml);
static PHP_MSHUTDOWN_FUNCTION(libxml);
static PHP_MINFO_FUNCTION(libxml);
static int php_libxml_post_deactivate(void);
static zend_result php_libxml_post_deactivate(void);

/* }}} */

Expand Down Expand Up @@ -882,7 +882,7 @@ static PHP_MSHUTDOWN_FUNCTION(libxml)
return SUCCESS;
}

static int php_libxml_post_deactivate(void)
static zend_result php_libxml_post_deactivate(void)
{
/* reset libxml generic error handling */
if (_php_libxml_per_request_initialization) {
Expand Down

0 comments on commit 42a6ff4

Please sign in to comment.