diff options
author | Thies C. Arntzen <thies@php.net> | 2001-02-15 14:01:18 +0000 |
---|---|---|
committer | Thies C. Arntzen <thies@php.net> | 2001-02-15 14:01:18 +0000 |
commit | 5ca813a5649bf59c2eee599f7c423a44d19e5cf4 (patch) | |
tree | 8d75f8785e5d909b02c917da73d5553dd90df880 /ext | |
parent | 72ec2e8f129fd07306ce3845dfc52a7520a4d559 (diff) | |
download | php-git-5ca813a5649bf59c2eee599f7c423a44d19e5cf4.tar.gz |
0..255
Diffstat (limited to 'ext')
-rw-r--r-- | ext/standard/string.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/standard/string.c b/ext/standard/string.c index 6b81ee03ab..2cdd40d51d 100644 --- a/ext/standard/string.c +++ b/ext/standard/string.c @@ -2937,7 +2937,7 @@ PHP_FUNCTION(count_chars) array_init(return_value); } - for (inx=0; inx < 255; inx++) { + for (inx=0; inx < 256; inx++) { switch (mymode) { case 0: add_index_long(return_value,inx,chars[inx]); |