From b06e62d4fe2171c618fe440afa4b9e2a81861592 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Loyet?= Date: Sat, 2 Jul 2011 16:40:59 +0000 Subject: [PATCH] - Fix php_escape_html_entities_ex call (int * has been changed to size_t *) --- sapi/fpm/fpm/fpm_status.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 -- 2.40.0