From: Rob Richards Date: Wed, 5 Oct 2005 19:52:58 +0000 (+0000) Subject: these should have remained ints X-Git-Tag: RELEASE_0_9_1~241 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=699084da71da46fcc58b6f9c24f4e3a5a2b1d7b7;p=php these should have remained ints --- diff --git a/ext/xmlreader/php_xmlreader.c b/ext/xmlreader/php_xmlreader.c index 548ebb0c61..9514217084 100644 --- a/ext/xmlreader/php_xmlreader.c +++ b/ext/xmlreader/php_xmlreader.c @@ -944,7 +944,7 @@ Sets the string that the the XMLReader will parse. */ PHP_METHOD(xmlreader, XML) { zval *id; - long source_len = 0, encoding_len = 0; + int source_len = 0, encoding_len = 0; long options = 0; xmlreader_object *intern; char *source, *uri = NULL, *encoding = NULL;