diff options
| author | Neil <nyamatongwe@gmail.com> | 2013-08-08 19:09:10 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2013-08-08 19:09:10 +1000 |
| commit | c7f250a5cca5545e7858786a0ca13620b87b7ada (patch) | |
| tree | d7485c4bd71376cba0632cec5c89850b0f3b72be /lexers/LexTCMD.cxx | |
| parent | 7e77919d56e56c37a7d555a9e2707650adc433ec (diff) | |
| download | scintilla-mirror-c7f250a5cca5545e7858786a0ca13620b87b7ada.tar.gz | |
Avoid warnings for uninitialized strings.
Diffstat (limited to 'lexers/LexTCMD.cxx')
| -rw-r--r-- | lexers/LexTCMD.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexTCMD.cxx b/lexers/LexTCMD.cxx index 6864612ac..041814615 100644 --- a/lexers/LexTCMD.cxx +++ b/lexers/LexTCMD.cxx @@ -445,7 +445,7 @@ static void FoldTCMDDoc(unsigned int startPos, int length, int, WordList *[], Ac int level = styler.LevelAt(line); int levelIndent = 0; unsigned int endPos = startPos + length; - char s[16]; + char s[16] = ""; char chPrev = styler.SafeGetCharAt(startPos - 1); |
