From 345e4c6a67a29a0d5dc0419d1b12ada144f0bdf7 Mon Sep 17 00:00:00 2001 From: Lev Walkin <vlm@lionet.info> Date: Thu, 19 Oct 2006 02:44:08 +0000 Subject: [PATCH] proper format strings --- skeletons/INTEGER.c | 4 ++-- skeletons/OCTET_STRING.c | 5 +++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/skeletons/INTEGER.c b/skeletons/INTEGER.c index 9c8b9ed3..0cbbbaab 100644 --- a/skeletons/INTEGER.c +++ b/skeletons/INTEGER.c @@ -334,8 +334,8 @@ INTEGER__xer_body_decode(asn_TYPE_descriptor_t *td, void *sptr, const void *chun } state = ST_SKIPSPACE; if(chunk_size) - ASN_DEBUG("INTEGER body %d 0x%2x..0x%2x", - chunk_size, *lstart, lstop[-1]); + ASN_DEBUG("INTEGER body %ld 0x%2x..0x%2x", + (long)chunk_size, *lstart, lstop[-1]); /* * We may have received a tag here. It will be processed inline. diff --git a/skeletons/OCTET_STRING.c b/skeletons/OCTET_STRING.c index 52c3d3e4..7313498f 100644 --- a/skeletons/OCTET_STRING.c +++ b/skeletons/OCTET_STRING.c @@ -1424,7 +1424,7 @@ OCTET_STRING_encode_uper(asn_TYPE_descriptor_t *td, asn_per_constraint_t *ct = pc ? &pc->size : &asn_DEF_OCTET_STRING_constraint; const BIT_STRING_t *st = (const BIT_STRING_t *)sptr; - asn_enc_rval_t er; + asn_enc_rval_t er = { 0, 0 }; int ct_extensible = ct->flags & APC_EXTENSIBLE; int inext = 0; /* Lies not within extension root */ int unit_bits = (specs->subvariant != 1) * 7 + 1; @@ -1509,7 +1509,8 @@ OCTET_STRING_encode_uper(asn_TYPE_descriptor_t *td, ssize_t maySave = uper_put_length(po, sizeinunits); if(maySave < 0) _ASN_ENCODE_FAILED; - ASN_DEBUG("Encoding %d of %d", maySave, sizeinunits); + ASN_DEBUG("Encoding %ld of %ld", + (long)maySave, (long)sizeinunits); if(squeeze) { ret = OCTET_STRING_per_put_squeezed(po, buf, -- GitLab