summaryrefslogtreecommitdiff
path: root/ext/standard/php_smart_string.h
diff options
context:
space:
mode:
authorAnatol Belski <ab@php.net>2014-08-20 14:46:14 +0200
committerAnatol Belski <ab@php.net>2014-08-20 14:46:14 +0200
commit745a71be33f8eafc8081add8c2c6a393b9deb349 (patch)
treef24250f6a8d0e7d7a4dd2dcd0b5abddfe793ba55 /ext/standard/php_smart_string.h
parentfdbbe5fa30ce524d9b0a8b376561d598bf0eb80c (diff)
downloadphp-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.h4
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;