aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/AutoComplete.cxx
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2002-04-21 10:20:59 +0000
committernyamatongwe <devnull@localhost>2002-04-21 10:20:59 +0000
commit044ad96868d92ceaf1748832e272577a289221ee (patch)
tree39857adc7906b22cb6629149b0ee36eb91f13e04 /src/AutoComplete.cxx
parent2fd5e782637b56483945a9d60af6c1a96a2b43ae (diff)
downloadscintilla-mirror-044ad96868d92ceaf1748832e272577a289221ee.tar.gz
Some Win64 compatibility and size_t correctness.
Diffstat (limited to 'src/AutoComplete.cxx')
-rw-r--r--src/AutoComplete.cxx2
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];