aboutsummaryrefslogtreecommitdiffstats
path: root/libalee/parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'libalee/parser.cpp')
-rw-r--r--libalee/parser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/libalee/parser.cpp b/libalee/parser.cpp
index a9c9aaa..bcef963 100644
--- a/libalee/parser.cpp
+++ b/libalee/parser.cpp
@@ -100,9 +100,9 @@ int Parser::parseNumber(State& state, Word word)
return UnknownWord;
}
- if (++i < word.end)
+ if (++i < word.wend)
c = state.dict.readbyte(i);
- } while (i < word.end);
+ } while (i < word.wend);
if (inv)
result *= -1;