summaryrefslogtreecommitdiff
path: root/gen.c
diff options
context:
space:
mode:
authorVern Paxson <vern@ee.lbl.gov>1993-10-03 17:34:54 +0000
committerVern Paxson <vern@ee.lbl.gov>1993-10-03 17:34:54 +0000
commitfef15fbf76e626005c5b73f95ae00b9be4692abd (patch)
treea6bd88e1d8fec39005bb6645fc4859208b76ae09 /gen.c
parentf953b20a11776c9818ade8b9e5e0365584c33e63 (diff)
Got rid of (char *) casts of yytext, no longer needed.
Diffstat (limited to 'gen.c')
-rw-r--r--gen.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gen.c b/gen.c
index 9f2f558..ee0f6ff 100644
--- a/gen.c
+++ b/gen.c
@@ -1052,7 +1052,7 @@ void make_tables()
indent_puts(
"YY_FATAL_ERROR( \"token too large, exceeds YYLMAX\" ); \\" );
indent_down();
- indent_puts( "strcpy( yytext, (char *) yytext_ptr ); \\" );
+ indent_puts( "strcpy( yytext, yytext_ptr ); \\" );
}
set_indent( 0 );