no lvalue casting

This commit is contained in:
Lev Walkin 2005-01-17 14:59:49 +00:00
parent feae8def5c
commit dd712469a8
1 changed files with 2 additions and 2 deletions

View File

@ -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;
}