summaryrefslogtreecommitdiff
path: root/ext/standard/php_smart_str.h
diff options
context:
space:
mode:
authorDmitry Stogov <dmitry@zend.com>2014-07-15 15:51:40 +0400
committerDmitry Stogov <dmitry@zend.com>2014-07-15 15:51:40 +0400
commit8217e20ddb16303ca75cd61d9176e41e3b35edb3 (patch)
tree458dc80183204a835e5b225a342c45fc0cb8d4a4 /ext/standard/php_smart_str.h
parentb4c2bd227743e4ab9d47bf624911b230b3237b51 (diff)
downloadphp-git-8217e20ddb16303ca75cd61d9176e41e3b35edb3.tar.gz
Fixed compilation warnings
Diffstat (limited to 'ext/standard/php_smart_str.h')
-rw-r--r--ext/standard/php_smart_str.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/php_smart_str.h b/ext/standard/php_smart_str.h
index e10a711435..71bcf0b223 100644
--- a/ext/standard/php_smart_str.h
+++ b/ext/standard/php_smart_str.h
@@ -132,7 +132,7 @@
static inline char *smart_str_print_long(char *buf, long num) {
char *r;
- _zend_print_signed_to_buf(buf, num, unsigned long, r);
+ _zend_print_signed_to_buf(buf, num, long, r);
return r;
}