]> granicus.if.org Git - php/commitdiff
MFH: Use long instead of int where long is expected.
authorIlia Alshanetsky <iliaa@php.net>
Fri, 12 Jan 2007 02:04:37 +0000 (02:04 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Fri, 12 Jan 2007 02:04:37 +0000 (02:04 +0000)
ext/standard/formatted_print.c

index 1f1fdf670c15a47e111fc61134a0babef04d6173..babe932f17084d8c5ea6a48685bef026ba00ba08 100644 (file)
@@ -486,9 +486,10 @@ php_formatted_print(int ht, int *len, int use_array TSRMLS_DC)
 {
        zval ***args, **z_format, **array;
        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();