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 | 6e5804b4ecfbfd0fe6ac4228c40ef121c96452ab (patch) | |
tree | 93048bf19dc63544f463bb2314189127c950bb88 /lexers/LexTCMD.cxx | |
parent | 08da59a992ebdd1d19614073ae39d929636270fc (diff) | |
download | scintilla-mirror-6e5804b4ecfbfd0fe6ac4228c40ef121c96452ab.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); |