diff options
Diffstat (limited to 'src/AutoComplete.cxx')
-rw-r--r-- | src/AutoComplete.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/AutoComplete.cxx b/src/AutoComplete.cxx index 48aaee38a..d971fa12a 100644 --- a/src/AutoComplete.cxx +++ b/src/AutoComplete.cxx @@ -118,7 +118,7 @@ void AutoComplete::Move(int delta) { } void AutoComplete::Select(const char *word) { - int lenWord = strlen(word); + size_t lenWord = strlen(word); int location = -1; const int maxItemLen=1000; char item[maxItemLen]; |