diff options
author | nyamatongwe <devnull@localhost> | 2001-08-02 14:10:15 +0000 |
---|---|---|
committer | nyamatongwe <devnull@localhost> | 2001-08-02 14:10:15 +0000 |
commit | 31a594762a395683e612f9126852aafa1bbdeae8 (patch) | |
tree | 8d99640cee83b762156b0e2c2ea6166b97312933 /src | |
parent | a728656ea243bb75a5ce6ec8cad57de2da50f72c (diff) | |
download | scintilla-mirror-31a594762a395683e612f9126852aafa1bbdeae8.tar.gz |
Squashed warning from Borland C++.
Diffstat (limited to 'src')
-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 8c18ec5f5..7f7412e43 100644 --- a/src/AutoComplete.cxx +++ b/src/AutoComplete.cxx @@ -126,7 +126,7 @@ void AutoComplete::Select(const char *word) { while ((start <= end) && (location == -1)) { // Binary searching loop int pivot = (start + end) / 2; lb.GetValue(pivot, item, maxItemLen); - int cond = 0; + int cond; if (ignoreCase) cond = CompareNCaseInsensitive(word, item, lenWord); else |