svn commit: r238197 - in head/usr.bin: mkcsmapper mkesdb
Eitan Adler
eadler at FreeBSD.org
Sat Jul 7 17:05:56 UTC 2012
Author: eadler
Date: Sat Jul 7 17:05:55 2012
New Revision: 238197
URL: http://svn.freebsd.org/changeset/base/238197
Log:
Fix spelling
PR: bin/167480
Submitted by: zeising
Approved by: cperciva
Modified:
head/usr.bin/mkcsmapper/lex.l
head/usr.bin/mkesdb/lex.l
Modified: head/usr.bin/mkcsmapper/lex.l
==============================================================================
--- head/usr.bin/mkcsmapper/lex.l Sat Jul 7 16:09:53 2012 (r238196)
+++ head/usr.bin/mkcsmapper/lex.l Sat Jul 7 17:05:55 2012 (r238197)
@@ -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);
}
Modified: head/usr.bin/mkesdb/lex.l
==============================================================================
--- head/usr.bin/mkesdb/lex.l Sat Jul 7 16:09:53 2012 (r238196)
+++ head/usr.bin/mkesdb/lex.l Sat Jul 7 17:05:55 2012 (r238197)
@@ -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);
}
More information about the svn-src-head
mailing list