From e43ecd2b1513cb91e26dcbd7f87b8f3e09d208c7 Mon Sep 17 00:00:00 2001 From: Eitan Adler Date: Sat, 7 Jul 2012 17:05:55 +0000 Subject: [PATCH] Fix spelling PR: bin/167480 Submitted by: zeising Approved by: cperciva --- usr.bin/mkcsmapper/lex.l | 2 +- 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; [\n] { line_number++; } . { } <> { - 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; [\n] { line_number++; } . { } <> { - yyerror("unexpected file end (unterminate comment)\n"); + yyerror("unexpected file end (unterminated comment)\n"); exit(1); }