From: Ilia Alshanetsky Date: Fri, 12 Jan 2007 02:04:27 +0000 (+0000) Subject: MFB: Use long instead of int where long is expected. X-Git-Tag: RELEASE_1_0_0RC1~290 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=78618624269794d10b38854d9280f217765ae734;p=php MFB: Use long instead of int where long is expected. --- diff --git a/ext/standard/formatted_print.c b/ext/standard/formatted_print.c index ae3f5f0aa6..35ed348769 100644 --- a/ext/standard/formatted_print.c +++ b/ext/standard/formatted_print.c @@ -651,9 +651,10 @@ static char * php_formatted_print(int ht, int *len, int use_array, int format_of { 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();