From: Harald Radi Date: Mon, 22 Apr 2002 18:02:01 +0000 (+0000) Subject: fixes a warning when compiling under win32 X-Git-Tag: php-4.3.0dev-ZendEngine2-Preview1~498 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b29604fefc7885d43aaa5d7f612d1fa32d8a1910;p=php fixes a warning when compiling under win32 --- diff --git a/ext/standard/php_smart_str.h b/ext/standard/php_smart_str.h index c0c2e770bb..d05e615fe7 100644 --- a/ext/standard/php_smart_str.h +++ b/ext/standard/php_smart_str.h @@ -84,7 +84,7 @@ static inline char *smart_str_print_unsigned(char *buf, unsigned long num) *p = '\0'; do { - *--p = (num % 10) + '0'; + *--p = (char)(num % 10) + '0'; num /= 10; } while (num > 0);