Index: src/InitTweak/FixGlobalInit.cpp
===================================================================
--- src/InitTweak/FixGlobalInit.cpp	(revision 13481af015ae54bf5a47cfb6924bc293de6c889b)
+++ src/InitTweak/FixGlobalInit.cpp	(revision 3859adb4d802f6f27e35aa4ed05a7c87d7ef632e)
@@ -10,6 +10,6 @@
 // Created On       : Mon May 04 15:14:56 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu Jul  2 16:39:52 2026
-// Update Count     : 35
+// Last Modified On : Fri Jul  3 08:41:54 2026
+// Update Count     : 37
 //
 
@@ -79,6 +79,6 @@
 		// Remove const qualifier from matching names, covering all forward declaration(s) and definition.
 		if ( constDeclsMnames.find( objDecl->mangleName ) != constDeclsMnames.end() ) {
-			ast::Type * fred = const_cast<ast::Type *>(mutDecl->get_type());
-			fred->set_const( false );
+			// SKULLDUGGERY: change value through const pointer.
+			const_cast<ast::Type *>(objDecl->get_type())->set_const( false );
 		} // if
 	}
