From 5ce0189a77f46696eaa1f3cc5dd0aff2bb5cabd4 Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sun, 21 Apr 2002 10:20:59 +0000 Subject: Some Win64 compatibility and size_t correctness. --- src/AutoComplete.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/AutoComplete.cxx') 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]; -- cgit v1.2.3