aboutsummaryrefslogtreecommitdiffstats
path: root/dfa.c
diff options
context:
space:
mode:
authorArnold D. Robbins <arnold@skeeve.com>2012-02-27 22:54:19 +0200
committerArnold D. Robbins <arnold@skeeve.com>2012-02-27 22:54:19 +0200
commita2353048716e96cc0b3d5c69bc6159902602abe9 (patch)
treeac2e1198fe29e64cebf918d4acaf89438f8236a2 /dfa.c
parent511ce662d8020896a812290d70458f777b460db9 (diff)
downloadegawk-a2353048716e96cc0b3d5c69bc6159902602abe9.tar.gz
egawk-a2353048716e96cc0b3d5c69bc6159902602abe9.tar.bz2
egawk-a2353048716e96cc0b3d5c69bc6159902602abe9.zip
Make 'j' tarball for testing.
Diffstat (limited to 'dfa.c')
-rw-r--r--dfa.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/dfa.c b/dfa.c
index 2bce294e..64ce8f7c 100644
--- a/dfa.c
+++ b/dfa.c
@@ -876,7 +876,7 @@ static token
parse_bracket_exp (void)
{
int invert;
- int c = 0, c1 = 0, c2 = 0;
+ int c, c1, c2;
charclass ccl;
/* Used to warn about [:space:].
@@ -886,8 +886,8 @@ parse_bracket_exp (void)
Bit 3 = includes ranges, char/equiv classes or collation elements. */
int colon_warning_state;
- wint_t wc = 0;
- wint_t wc2 = 0;
+ wint_t wc;
+ wint_t wc2;
wint_t wc1 = 0;
/* Work area to build a mb_char_classes. */