diff options
author | Dmitry Stogov <dmitry@zend.com> | 2014-07-15 15:51:40 +0400 |
---|---|---|
committer | Dmitry Stogov <dmitry@zend.com> | 2014-07-15 15:51:40 +0400 |
commit | 8217e20ddb16303ca75cd61d9176e41e3b35edb3 (patch) | |
tree | 458dc80183204a835e5b225a342c45fc0cb8d4a4 /ext/standard/php_smart_str.h | |
parent | b4c2bd227743e4ab9d47bf624911b230b3237b51 (diff) | |
download | php-git-8217e20ddb16303ca75cd61d9176e41e3b35edb3.tar.gz |
Fixed compilation warnings
Diffstat (limited to 'ext/standard/php_smart_str.h')
-rw-r--r-- | ext/standard/php_smart_str.h | 2 |
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; } |