diff options
| author | Florian MARGAINE <florian@margaine.com> | 2014-09-04 19:58:40 +0200 |
|---|---|---|
| committer | Florian MARGAINE <florian@margaine.com> | 2014-09-04 19:59:39 +0200 |
| commit | c24c7ff224e8aa86b129700301796c78bc92ee18 (patch) | |
| tree | 0ab6dccb779f7a11fe45b31d8045e337a434341d /ext | |
| parent | 25f5ba94aca1e89ee5f0c66513e58826afa3b853 (diff) | |
| download | php-git-c24c7ff224e8aa86b129700301796c78bc92ee18.tar.gz | |
Fixes zpp parameter from int to size_t
Diffstat (limited to 'ext')
| -rw-r--r-- | ext/standard/info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/info.c b/ext/standard/info.c index 49244c6676..a1a44cbae6 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -1187,7 +1187,7 @@ PHP_FUNCTION(phpinfo) PHP_FUNCTION(phpversion) { char *ext_name = NULL; - int ext_name_len = 0; + size_t ext_name_len = 0; if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "|s", &ext_name, &ext_name_len) == FAILURE) { return; |
