Commit: d8023d13eb5c5c611a17b183b28c0a81233d8a1a Author: Michael Wallner <m...@php.net> Wed, 21 Aug 2013 19:17:22 +0200 Parents: 540f325664a6f4975cf005f367c95ece04757714 Branches: PHP-5.4 PHP-5.5 master
Link: http://git.php.net/?p=php-src.git;a=commitdiff;h=d8023d13eb5c5c611a17b183b28c0a81233d8a1a Log: Fix pointer sign warning showing up in EVERY build Changed paths: M ext/standard/info.c Diff: diff --git a/ext/standard/info.c b/ext/standard/info.c index 6bc406f..cb2e469 100644 --- a/ext/standard/info.c +++ b/ext/standard/info.c @@ -295,7 +295,7 @@ void php_info_print_style(TSRMLS_D) PHPAPI char *php_info_html_esc(char *string TSRMLS_DC) { size_t new_len; - return php_escape_html_entities(string, strlen(string), &new_len, 0, ENT_QUOTES, NULL TSRMLS_CC); + return php_escape_html_entities((unsigned char *) string, strlen(string), &new_len, 0, ENT_QUOTES, NULL TSRMLS_CC); } /* }}} */ -- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php