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 | a899e335183da10b9ab9dc0df35aada3dc37fc68 (patch) | |
| tree | d65548ffc90289d495b8a81d06403324ba59e858 /lexers/LexAU3.cxx | |
| parent | 156e9310843d056f654840c3c5e60be10eb6f7af (diff) | |
| download | scintilla-mirror-a899e335183da10b9ab9dc0df35aada3dc37fc68.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; |
