diff options
| author | Eitan Adler <eadler@FreeBSD.org> | 2012-07-07 17:05:55 +0000 |
|---|---|---|
| committer | Eitan Adler <eadler@FreeBSD.org> | 2012-07-07 17:05:55 +0000 |
| commit | e43ecd2b1513cb91e26dcbd7f87b8f3e09d208c7 (patch) | |
| tree | f283c21d6d7e72d0cea099bb251d11c36733337b | |
| parent | 987e5277f87aab2260f435f80424b5ed9ab7dd48 (diff) | |
Notes
| -rw-r--r-- | usr.bin/mkcsmapper/lex.l | 2 | ||||
| -rw-r--r-- | usr.bin/mkesdb/lex.l | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/mkcsmapper/lex.l b/usr.bin/mkcsmapper/lex.l index dd46caf5b431..1b87cc0fc016 100644 --- a/usr.bin/mkcsmapper/lex.l +++ b/usr.bin/mkcsmapper/lex.l @@ -57,7 +57,7 @@ int line_number = 1; <COMMENT>[\n] { line_number++; } <COMMENT>. { } <COMMENT><<EOF>> { - yyerror("unexpected file end (unterminate comment)\n"); + yyerror("unexpected file end (unterminated comment)\n"); exit(1); } diff --git a/usr.bin/mkesdb/lex.l b/usr.bin/mkesdb/lex.l index 033897a95610..7d83e1d5ce39 100644 --- a/usr.bin/mkesdb/lex.l +++ b/usr.bin/mkesdb/lex.l @@ -59,7 +59,7 @@ int line_number = 1; <COMMENT>[\n] { line_number++; } <COMMENT>. { } <COMMENT><<EOF>> { - yyerror("unexpected file end (unterminate comment)\n"); + yyerror("unexpected file end (unterminated comment)\n"); exit(1); } |
