diff options
| author | Daniel Friesel <derf@derf.homelinux.org> | 2009-01-01 15:29:25 +0100 |
|---|---|---|
| committer | Daniel Friesel <derf@derf.homelinux.org> | 2009-01-01 15:29:25 +0100 |
| commit | 4d86abedca111fb4857ee8cd07bf81dbb6a7c586 (patch) | |
| tree | d1dec43394ad816e28d4d450815c8217725c8958 | |
| parent | 8d9ab22a6cfeaf95005f9c056336f26e906e004a (diff) | |
tibtoa: Fixed while condition
| -rwxr-xr-x | bin/tibtoa | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -629,7 +629,7 @@ substr($program, -$footer, $footer, ''); $length = length($program); $offset = 0; -while($offset <= $length) { +while($offset < $length) { $char = ord(substr($program, $offset++, 1)); if (exists($all{$char})) { $out = $all{$char}; |
