Index: src/CodeGen/FixMain.cc
===================================================================
--- src/CodeGen/FixMain.cc	(revision 539a8c8078617974987dd88ab674a236635a0110)
+++ src/CodeGen/FixMain.cc	(revision ca9d65e54b7ed187b75dfe016b8d4e2debd19fa4)
@@ -11,5 +11,5 @@
 // Last Modified By :
 // Last Modified On :
-// Update Count     : 0
+// Update Count     : 1
 //
 
@@ -39,5 +39,5 @@
 		if ( isMain( decl ) ) {
 			if ( main_declaration ) {
-				SemanticError( decl, "Multiple definition of main routine\n" );
+				SemanticError( decl, "Multiple definition of main routine" );
 			}
 			main_declaration = decl;
Index: src/CodeGen/FixNames.cc
===================================================================
--- src/CodeGen/FixNames.cc	(revision 539a8c8078617974987dd88ab674a236635a0110)
+++ src/CodeGen/FixNames.cc	(revision ca9d65e54b7ed187b75dfe016b8d4e2debd19fa4)
@@ -9,7 +9,7 @@
 // Author           : Richard C. Bilson
 // Created On       : Mon May 18 07:44:20 2015
-// Last Modified By : Andrew Beach
-// Last Modified On : Wed Jul 20 11:49:00 2022
-// Update Count     : 24
+// Last Modified By : Peter A. Buhr
+// Last Modified On : Thu Dec 14 16:16:51 2023
+// Update Count     : 25
 //
 
@@ -57,5 +57,5 @@
 			int nargs = mutDecl->params.size();
 			if ( 0 != nargs && 2 != nargs && 3 != nargs ) {
-				SemanticError( functionDecl, "Main expected to have 0, 2 or 3 arguments\n" );
+				SemanticError( functionDecl, "Main expected to have 0, 2 or 3 arguments" );
 			}
 			ast::chain_mutate( mutDecl->stmts )->kids.push_back(
