diff options
author | Anatol Belski <ab@php.net> | 2014-08-20 14:46:14 +0200 |
---|---|---|
committer | Anatol Belski <ab@php.net> | 2014-08-20 14:46:14 +0200 |
commit | 745a71be33f8eafc8081add8c2c6a393b9deb349 (patch) | |
tree | f24250f6a8d0e7d7a4dd2dcd0b5abddfe793ba55 /ext/standard/php_smart_string.h | |
parent | fdbbe5fa30ce524d9b0a8b376561d598bf0eb80c (diff) | |
download | php-git-745a71be33f8eafc8081add8c2c6a393b9deb349.tar.gz |
yet more fixes to zpp
Diffstat (limited to 'ext/standard/php_smart_string.h')
-rw-r--r-- | ext/standard/php_smart_string.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/standard/php_smart_string.h b/ext/standard/php_smart_string.h index 02ba9fe84e..83d59054dd 100644 --- a/ext/standard/php_smart_string.h +++ b/ext/standard/php_smart_string.h @@ -119,13 +119,13 @@ __dest->len = __nl; \ } while (0) -static inline char *smart_string_print_long(char *buf, long num) { +static inline char *smart_string_print_long(char *buf, php_int_t num) { char *r; _zend_print_signed_to_buf(buf, num, unsigned long, r); return r; } -static inline char *smart_string_print_unsigned(char *buf, long num) { +static inline char *smart_string_print_unsigned(char *buf, php_int_t num) { char *r; _zend_print_unsigned_to_buf(buf, num, unsigned long, r); return r; |