diff options
author | Neil <nyamatongwe@gmail.com> | 2013-08-07 21:17:38 +1000 |
---|---|---|
committer | Neil <nyamatongwe@gmail.com> | 2013-08-07 21:17:38 +1000 |
commit | 3698dbe9ada24cea2b6a6c4c07428e9a457a6b51 (patch) | |
tree | f18718ec7f7a253bac4148fd0d3d77fe65c06f5e /lexers/LexAU3.cxx | |
parent | 8cf888545b78221b3c27c8dc4601522332157b68 (diff) | |
download | scintilla-mirror-3698dbe9ada24cea2b6a6c4c07428e9a457a6b51.tar.gz |
Ensure strings initialised to avoid warnings.
Diffstat (limited to 'lexers/LexAU3.cxx')
-rw-r--r-- | lexers/LexAU3.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lexers/LexAU3.cxx b/lexers/LexAU3.cxx index 6f137adba..68f1798d3 100644 --- a/lexers/LexAU3.cxx +++ b/lexers/LexAU3.cxx @@ -228,7 +228,7 @@ static void ColouriseAU3Doc(unsigned int startPos, char si; // string indicator "=1 '=2 char ni; // Numeric indicator error=9 normal=0 normal+dec=1 hex=2 Enot=3 char ci; // comment indicator 0=not linecomment(;) - char s_save[100]; + char s_save[100] = ""; si=0; ni=0; ci=0; |