diff options
author | Ilia Alshanetsky <iliaa@php.net> | 2007-01-12 02:03:59 +0000 |
---|---|---|
committer | Ilia Alshanetsky <iliaa@php.net> | 2007-01-12 02:03:59 +0000 |
commit | 25e737300980fb815f128f2bfbe74a4635a8f686 (patch) | |
tree | 35dd7898b4cc4fc4db9635bdd7d7971f4e45f178 | |
parent | 2ae036f038f5b55435cdc7efb18d32831aa27f3a (diff) | |
download | php-git-25e737300980fb815f128f2bfbe74a4635a8f686.tar.gz |
Use long instead of int where long is expected.
-rw-r--r-- | ext/standard/formatted_print.c | 3 |
1 files changed, 2 insertions, 1 deletions
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(); |