diff options
author | Nicolas Zingilé <nicolas.zingile@open.eurogiciel.org> | 2014-11-17 16:32:56 +0100 |
---|---|---|
committer | Nicolas Zingilé <nicolas.zingile@open.eurogiciel.org> | 2014-11-17 16:32:56 +0100 |
commit | 2b8d32c7857a9ebd3a0b99e7d285687bde162b0f (patch) | |
tree | b2ecc519218e259a4fb5e5f0a72b7e00bc3a2b43 /gen.c | |
parent | b8577c30fcc6e962e341f5ab3402197cd9bb1124 (diff) | |
download | flex-2b8d32c7857a9ebd3a0b99e7d285687bde162b0f.tar.gz flex-2b8d32c7857a9ebd3a0b99e7d285687bde162b0f.tar.bz2 flex-2b8d32c7857a9ebd3a0b99e7d285687bde162b0f.zip |
Imported Upstream version 2.5.39upstream/2.5.39
Diffstat (limited to 'gen.c')
-rw-r--r-- | gen.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -874,7 +874,7 @@ void gen_next_state (worry_about_NULs) else strcpy (char_map, useecs ? - "yy_ec[YY_SC_TO_UI(*yy_cp)]" : + "yy_ec[YY_SC_TO_UI(*yy_cp)] " : "YY_SC_TO_UI(*yy_cp)"); if (worry_about_NULs && nultrans) { @@ -1972,7 +1972,7 @@ void make_tables () ("if ( yy_act != YY_END_OF_BUFFER && yy_rule_can_match_eol[yy_act] )"); indent_up (); indent_puts ("{"); - indent_puts ("int yyl;"); + indent_puts ("yy_size_t yyl;"); do_indent (); out_str ("for ( yyl = %s; yyl < yyleng; ++yyl )\n", yymore_used ? (yytext_is_array ? "YY_G(yy_prev_more_offset)" : |