aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-08-02 14:10:15 +0000
committernyamatongwe <unknown>2001-08-02 14:10:15 +0000
commit19a516a64d4a83df2699b9f215c1bef7774d2b29 (patch)
tree8d99640cee83b762156b0e2c2ea6166b97312933
parentbc79574f6b14048f95c57b7abe9d1bf768035f61 (diff)
downloadscintilla-mirror-19a516a64d4a83df2699b9f215c1bef7774d2b29.tar.gz
Squashed warning from Borland C++.
-rw-r--r--src/AutoComplete.cxx2
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