Skip to content

Commit d8023d1

Browse files
committed
Fix pointer sign warning showing up in EVERY build
1 parent 540f325 commit d8023d1

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
@@ -295,7 +295,7 @@ void php_info_print_style(TSRMLS_D)
295295
PHPAPI char *php_info_html_esc(char *string TSRMLS_DC)
296296
{
297297
size_t new_len;
298-
return php_escape_html_entities(string, strlen(string), &new_len, 0, ENT_QUOTES, NULL TSRMLS_CC);
298+
return php_escape_html_entities((unsigned char *) string, strlen(string), &new_len, 0, ENT_QUOTES, NULL TSRMLS_CC);
299299
}
300300
/* }}} */
301301

0 commit comments

Comments
 (0)