aboutsummaryrefslogtreecommitdiffstats
path: root/skeletons/NULL.c
diff options
context:
space:
mode:
authorLev Walkin <vlm@lionet.info>2016-03-14 03:08:15 -0700
committerLev Walkin <vlm@lionet.info>2016-03-14 03:08:19 -0700
commit7c1dc05f0e10ede24f577fe4b9fa0fdf8036e1f2 (patch)
treed2ce8184f4f7a8a7157967378be8ea39679798df /skeletons/NULL.c
parentc6cac8e958ef898fc2d36cc4ef354ff599711731 (diff)
do not use reserved identifiers, contd
Diffstat (limited to 'skeletons/NULL.c')
-rw-r--r--skeletons/NULL.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/skeletons/NULL.c b/skeletons/NULL.c
index 8dcb6aa9..62bc91e0 100644
--- a/skeletons/NULL.c
+++ b/skeletons/NULL.c
@@ -47,7 +47,7 @@ NULL_encode_der(asn_TYPE_descriptor_t *td, void *ptr,
erval.structure_ptr = ptr;
}
- _ASN_ENCODED_OK(erval);
+ ASN__ENCODED_OK(erval);
}
asn_enc_rval_t
@@ -65,7 +65,7 @@ NULL_encode_xer(asn_TYPE_descriptor_t *td, void *sptr,
/* XMLNullValue is empty */
er.encoded = 0;
- _ASN_ENCODED_OK(er);
+ ASN__ENCODED_OK(er);
}
@@ -123,7 +123,7 @@ NULL_decode_uper(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
if(*sptr) {
*(NULL_t *)*sptr = 0;
} else {
- _ASN_DECODE_FAILED;
+ ASN__DECODE_FAILED;
}
}
@@ -147,5 +147,5 @@ NULL_encode_uper(asn_TYPE_descriptor_t *td, asn_per_constraints_t *constraints,
(void)po;
er.encoded = 0;
- _ASN_ENCODED_OK(er);
+ ASN__ENCODED_OK(er);
}