From: Ilia Alshanetsky Date: Fri, 12 Jan 2007 02:03:59 +0000 (+0000) Subject: Use long instead of int where long is expected. X-Git-Tag: php-5.2.1RC3~42 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=25e737300980fb815f128f2bfbe74a4635a8f686;p=php Use long instead of int where long is expected. --- diff --git a/ext/standard/formatted_print.c b/ext/standard/formatted_print.c index 7403674f9c..0888818a17 100644 --- a/ext/standard/formatted_print.c +++ b/ext/standard/formatted_print.c @@ -352,9 +352,10 @@ php_formatted_print(int ht, int *len, int use_array, int format_offset TSRMLS_DC { zval ***args, **z_format; int argc, size = 240, inpos = 0, outpos = 0, temppos; - int alignment, width, precision, currarg, adjusting, argnum; + int alignment, currarg, adjusting; char *format, *result, padding; int always_sign; + long argnum, width, precision; argc = ZEND_NUM_ARGS();