From: Jérôme Loyet Date: Sat, 2 Jul 2011 16:40:59 +0000 (+0000) Subject: - Fix php_escape_html_entities_ex call (int * has been changed to size_t *) X-Git-Tag: php-5.4.0alpha2~63 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=440727f4ed1cda47660cc7b03bc381c15a04eeb1;p=php - Fix php_escape_html_entities_ex call (int * has been changed to size_t *) --- diff --git a/sapi/fpm/fpm/fpm_status.c b/sapi/fpm/fpm/fpm_status.c index cf912c06a9..977ce3252a 100644 --- a/sapi/fpm/fpm/fpm_status.c +++ b/sapi/fpm/fpm/fpm_status.c @@ -376,7 +376,8 @@ int fpm_status_handle_request(TSRMLS_D) /* {{{ */ /* no need to test the var 'full' */ if (full_syntax) { - int i, len, first; + int i, first; + size_t len; char *query_string; struct timeval duration, now; #ifdef HAVE_FPM_LQ