aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/LexCLW.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/LexCLW.cxx b/src/LexCLW.cxx
index 19c792fb7..e28e4b13b 100644
--- a/src/LexCLW.cxx
+++ b/src/LexCLW.cxx
@@ -42,7 +42,8 @@ static char CharacterUpper(char chChar) {
static void StringUpper(char *szString) {
while (*szString) {
- *szString++ = CharacterUpper(*szString);
+ *szString = CharacterUpper(*szString);
+ szString++;
}
}