Fix duplicate 'const' warnings

Since the typedef of asn_INTEGER_specifics_t also contains a const the
compiler complained about:
"warning: duplicate ‘const’ [-Wpedantic]"
diff --git a/tests/127-per-long-OK.asn1.-Pgen-PER b/tests/127-per-long-OK.asn1.-Pgen-PER
index 86e3502..dd9389a 100644
--- a/tests/127-per-long-OK.asn1.-Pgen-PER
+++ b/tests/127-per-long-OK.asn1.-Pgen-PER
@@ -354,7 +354,7 @@
 
 /*** <<< STAT-DEFS [T] >>> ***/
 
-static const asn_INTEGER_specifics_t asn_SPC_unsigned32_specs_4 = {
+static asn_INTEGER_specifics_t asn_SPC_unsigned32_specs_4 = {
 	0,	0,	0,	0,	0,
 	0,	/* Native long size */
 	1	/* Unsigned representation */
@@ -388,7 +388,7 @@
 	&asn_SPC_unsigned32_specs_4	/* Additional specs */
 };
 
-static const asn_INTEGER_specifics_t asn_SPC_unsplit32_specs_5 = {
+static asn_INTEGER_specifics_t asn_SPC_unsplit32_specs_5 = {
 	0,	0,	0,	0,	0,
 	0,	/* Native long size */
 	1	/* Unsigned representation */