diff options
author | Tavian Barnes <tavianator@gmail.com> | 2010-03-18 02:32:01 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@gmail.com> | 2010-03-18 02:32:01 -0400 |
commit | 4d152ae3c3d292e009b6c0245905b3b99801fc96 (patch) | |
tree | 7d0a2261ec6d6ed95d01ef865cf11a276be9c065 /dimension/lexer.l | |
parent | fc54151bbc6c81067c1d6c8ee752e6aad1ea984e (diff) | |
download | dimension-4d152ae3c3d292e009b6c0245905b3b99801fc96.tar.xz |
Fix some warnings reported by clang static analysis.
Diffstat (limited to 'dimension/lexer.l')
-rw-r--r-- | dimension/lexer.l | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dimension/lexer.l b/dimension/lexer.l index d198b62..5a603ea 100644 --- a/dimension/lexer.l +++ b/dimension/lexer.l @@ -107,7 +107,7 @@ CALCULATE_COLUMN(); \ } while(0) -int token; +int token = DMNSN_T_LEX_ERROR; size_t string_length = 0, string_extent = 8; unsigned long wchar; |