Skip to content

Commit 25e7373

Browse files
author
Ilia Alshanetsky
committed
Use long instead of int where long is expected.
1 parent 2ae036f commit 25e7373

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ext/standard/formatted_print.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -352,9 +352,10 @@ php_formatted_print(int ht, int *len, int use_array, int format_offset TSRMLS_DC
352352
{
353353
zval ***args, **z_format;
354354
int argc, size = 240, inpos = 0, outpos = 0, temppos;
355-
int alignment, width, precision, currarg, adjusting, argnum;
355+
int alignment, currarg, adjusting;
356356
char *format, *result, padding;
357357
int always_sign;
358+
long argnum, width, precision;
358359

359360
argc = ZEND_NUM_ARGS();
360361

0 commit comments

Comments
 (0)