diff options
author | Dmitry Stogov <dmitry@php.net> | 2005-08-02 11:15:42 +0000 |
---|---|---|
committer | Dmitry Stogov <dmitry@php.net> | 2005-08-02 11:15:42 +0000 |
commit | c9571d77863433525b7a0e046fbeb3a89b790bca (patch) | |
tree | 63c43e4bea8ad2929c8fa0b20a8532624a29659b /ext/soap/php_xml.c | |
parent | 71df2059078214e3ac599f73a4d2ff71a8b67f8e (diff) | |
download | php-git-c9571d77863433525b7a0e046fbeb3a89b790bca.tar.gz |
Fixed ZTS build
Diffstat (limited to 'ext/soap/php_xml.c')
-rw-r--r-- | ext/soap/php_xml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/soap/php_xml.c b/ext/soap/php_xml.c index 73035ee56c..c6992fc05a 100644 --- a/ext/soap/php_xml.c +++ b/ext/soap/php_xml.c @@ -76,7 +76,7 @@ static void soap_Comment(void *ctx, const xmlChar *value) { } -xmlDocPtr soap_xmlParseFile(const char *filename) +xmlDocPtr soap_xmlParseFile(const char *filename TSRMLS_DC) { xmlParserCtxtPtr ctxt = NULL; xmlDocPtr ret; |