Skip to content

Commit 6181948

Browse files
committed
Merge branch 'PHP-5.4' into PHP-5.5
* PHP-5.4: Fix pointer sign warning showing up in EVERY build
2 parents 83e3466 + d8023d1 commit 6181948

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ext/standard/info.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ void php_info_print_style(TSRMLS_D)
287287
PHPAPI char *php_info_html_esc(char *string TSRMLS_DC)
288288
{
289289
size_t new_len;
290-
return php_escape_html_entities(string, strlen(string), &new_len, 0, ENT_QUOTES, NULL TSRMLS_CC);
290+
return php_escape_html_entities((unsigned char *) string, strlen(string), &new_len, 0, ENT_QUOTES, NULL TSRMLS_CC);
291291
}
292292
/* }}} */
293293

0 commit comments

Comments
 (0)