diff options
author | Anatol Belski <ab@php.net> | 2014-08-27 17:31:24 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-27 20:49:33 +0200 |
commit | 257ed4061ae88802538a6f22724c57fda052e36e (patch) | |
tree | 4660289d7e0f1ef183518f52fe885c6c15898715 /ext/simplexml/simplexml.c | |
parent | 5882446b8b72010e6240e3fa11001a7546d802a6 (diff) | |
download | php-git-257ed4061ae88802538a6f22724c57fda052e36e.tar.gz |
's' works with size_t round 2
Diffstat (limited to 'ext/simplexml/simplexml.c')
-rw-r--r-- | ext/simplexml/simplexml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/simplexml/simplexml.c b/ext/simplexml/simplexml.c index e6754a0dd9..db4944ff5a 100644 --- a/ext/simplexml/simplexml.c +++ b/ext/simplexml/simplexml.c @@ -2114,7 +2114,7 @@ PHP_FUNCTION(simplexml_load_file) { php_sxe_object *sxe; char *filename; - int filename_len; + size_t filename_len; xmlDocPtr docp; char *ns = NULL; size_t ns_len = 0; |