summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-01-01 15:29:25 +0100
committerDaniel Friesel <derf@derf.homelinux.org>2009-01-01 15:29:25 +0100
commit4d86abedca111fb4857ee8cd07bf81dbb6a7c586 (patch)
treed1dec43394ad816e28d4d450815c8217725c8958
parent8d9ab22a6cfeaf95005f9c056336f26e906e004a (diff)
tibtoa: Fixed while condition
-rwxr-xr-xbin/tibtoa2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/tibtoa b/bin/tibtoa
index 2837880..cdf5bdb 100755
--- a/bin/tibtoa
+++ b/bin/tibtoa
@@ -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};