aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tests/42-real-life-OK.asn1.-PR4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/42-real-life-OK.asn1.-PR b/tests/42-real-life-OK.asn1.-PR
index 716928fb..83be42f7 100644
--- a/tests/42-real-life-OK.asn1.-PR
+++ b/tests/42-real-life-OK.asn1.-PR
@@ -47,7 +47,7 @@ memb_varsets_1_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
{ /* Determine the number of elements */
const A_SEQUENCE_OF(void) *list;
- (const void *)list = sptr;
+ list = (const A_SEQUENCE_OF(void) *)sptr;
size = list->count;
}
@@ -376,7 +376,7 @@ memb_vset_3_constraint(asn_TYPE_descriptor_t *td, const void *sptr,
{ /* Determine the number of elements */
const A_SET_OF(void) *list;
- (const void *)list = sptr;
+ list = (const A_SET_OF(void) *)sptr;
size = list->count;
}