diff options
author | nyamatongwe <unknown> | 2001-08-02 14:10:15 +0000 |
---|---|---|
committer | nyamatongwe <unknown> | 2001-08-02 14:10:15 +0000 |
commit | 19a516a64d4a83df2699b9f215c1bef7774d2b29 (patch) | |
tree | 8d99640cee83b762156b0e2c2ea6166b97312933 | |
parent | bc79574f6b14048f95c57b7abe9d1bf768035f61 (diff) | |
download | scintilla-mirror-19a516a64d4a83df2699b9f215c1bef7774d2b29.tar.gz |
Squashed warning from Borland C++.
-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 |