aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/LexOthers.cxx
diff options
context:
space:
mode:
authornyamatongwe <unknown>2001-01-04 11:06:50 +0000
committernyamatongwe <unknown>2001-01-04 11:06:50 +0000
commit22aeb25499dc8c5f32486d5570d5ae05035c0e44 (patch)
treefe61c225dda8864b34f691325a2e5885f50b3fa6 /src/LexOthers.cxx
parent1ef3637f1acbfbc6fd4167c5938ce5ab28ab9855 (diff)
downloadscintilla-mirror-22aeb25499dc8c5f32486d5570d5ae05035c0e44.tar.gz
Fixed some warnings.
Diffstat (limited to 'src/LexOthers.cxx')
-rw-r--r--src/LexOthers.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/LexOthers.cxx b/src/LexOthers.cxx
index d372c8b42..4ead7e580 100644
--- a/src/LexOthers.cxx
+++ b/src/LexOthers.cxx
@@ -67,7 +67,7 @@ static void ColouriseBatchDoc(unsigned int startPos, int length, int, WordList *
unsigned int linePos = 0, startLine = startPos;
for (unsigned int i = startPos; i < startPos + length; i++) {
if (linePos != 0 || !isspace(styler[i])) { // Skip initial spaces
- lineBuffer[linePos++] = tolower(styler[i]);
+ lineBuffer[linePos++] = static_cast<char>(tolower(styler[i]));
}
if (styler[i] == '\r' || styler[i] == '\n' || (linePos >= sizeof(lineBuffer) - 1)) {
lineBuffer[linePos] = '\0';