Index: src/Parser/ExpressionNode.cc
===================================================================
--- src/Parser/ExpressionNode.cc	(revision 8a972486173f920eea1f1868fff138e1568a8a59)
+++ src/Parser/ExpressionNode.cc	(revision 641be0a494bfe5614872712c2f94132e76ffa0bd)
@@ -10,6 +10,6 @@
 // Created On       : Sat May 16 13:17:07 2015
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Sat Aug  7 09:18:56 2021
-// Update Count     : 1077
+// Last Modified On : Mon Jan 16 15:52:05 2023
+// Update Count     : 1078
 //
 
@@ -173,8 +173,8 @@
 		if ( posn != string::npos ) { Unsigned = true; type = 2; ltype = 4; str.erase( posn, 1 ); goto FINI; }
 
-		posn = str.rfind( "hh" );						// char
+		posn = str.rfind( "hh" );						// signed char
 		if ( posn != string::npos ) { type = 1; str.erase( posn, 2 ); goto FINI; }
 
-		posn = str.rfind( "HH" );						// char
+		posn = str.rfind( "HH" );						// signed char
 		if ( posn != string::npos ) { type = 1; str.erase( posn, 2 ); goto FINI; }
 
