MFB: Use long instead of int where long is expected.

This commit is contained in:
Ilia Alshanetsky 2007-01-12 02:04:27 +00:00
parent e5a2796223
commit 7861862426

View File

@ -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();