diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-01-11 23:05:19 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-01-11 23:05:19 +0000 |
commit | 7fa0970567054097edec1e2b95a47f0b51bd9afe (patch) | |
tree | 601d768e2825b0d9920de950d3f02d3ec7c2bac2 /ext/standard/formatted_print.c | |
parent | dd9b7f25cfe824a5e7cd3e93e09ae848b1be9a00 (diff) | |
download | php-git-7fa0970567054097edec1e2b95a47f0b51bd9afe.tar.gz |
Reverted because correct decision has not been made yet.
Diffstat (limited to 'ext/standard/formatted_print.c')
-rw-r--r-- | ext/standard/formatted_print.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/formatted_print.c b/ext/standard/formatted_print.c index 47cc471608..d5bd95c4b7 100644 --- a/ext/standard/formatted_print.c +++ b/ext/standard/formatted_print.c @@ -504,7 +504,7 @@ php_formatted_print(int ht, int *len, int use_array, int format_offset TSRMLS_DC currarg = 1; - while (inpos < (int)Z_STRLEN_PP(args[format_offset])) { + while (inpos<Z_STRLEN_PP(args[format_offset])) { int expprec = 0; PRINTF_DEBUG(("sprintf: format[%d]='%c'\n", inpos, format[inpos])); |