Index: src/Common/SemanticError.h
===================================================================
--- src/Common/SemanticError.h	(revision bf205679e365ce7db05a5c24d237c676a256dbb3)
+++ src/Common/SemanticError.h	(revision be00a2d9e670bda1735912e13a549e62a6107cc7)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 18 07:44:20 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Feb  2 10:59:10 2023
-// Update Count     : 36
+// Last Modified On : Sat Feb 25 12:01:31 2023
+// Update Count     : 37
 //
 
@@ -56,5 +56,5 @@
 	{"self-assign"              , Severity::Warn    , "self assignment of expression: %s"                          },
 	{"reference-conversion"     , Severity::Warn    , "rvalue to reference conversion of rvalue: %s"               },
-	{"qualifiers-zero_t-one_t"  , Severity::Warn    , "questionable use of type qualifier %s with %s"              },
+	{"qualifiers-zero_t-one_t"  , Severity::Warn    , "questionable use of type qualifier(s) with %s"              },
 	{"aggregate-forward-decl"   , Severity::Warn    , "forward declaration of nested aggregate: %s"                },
 	{"superfluous-decl"         , Severity::Warn    , "declaration does not allocate storage: %s"                  },
Index: src/Parser/DeclarationNode.cc
===================================================================
--- src/Parser/DeclarationNode.cc	(revision bf205679e365ce7db05a5c24d237c676a256dbb3)
+++ src/Parser/DeclarationNode.cc	(revision be00a2d9e670bda1735912e13a549e62a6107cc7)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 12:34:05 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Feb 24 11:10:03 2023
-// Update Count     : 1400
+// Last Modified On : Sat Feb 25 12:15:40 2023
+// Update Count     : 1404
 //
 
@@ -568,5 +568,5 @@
 	checkQualifiers( type, q->type );
 	if ( (builtin == Zero || builtin == One) && q->type->qualifiers.any() && error.length() == 0 ) {
-		SemanticWarning( yylloc, Warning::BadQualifiersZeroOne, Type::QualifiersNames[ilog2( q->type->qualifiers.val )], builtinTypeNames[builtin] );
+		SemanticWarning( yylloc, Warning::BadQualifiersZeroOne, builtinTypeNames[builtin] );
 	} // if
 	addQualifiersToType( q->type, type );
