remove warnings

This commit is contained in:
Lev Walkin 2017-10-03 15:47:26 -07:00
parent fe8c6b7eac
commit 67afc36530
1 changed files with 2 additions and 2 deletions

View File

@ -720,7 +720,7 @@ INTEGER_encode_uper(asn_TYPE_descriptor_t *td,
|| uval > (unsigned long)ct->upper_bound)
inext = 1;
}
ASN_DEBUG("Value %lu (%02x/%d) lb %lu ub %lu %s",
ASN_DEBUG("Value %lu (%02x/%zu) lb %lu ub %lu %s",
uval, st->buf[0], st->size,
ct->lower_bound, ct->upper_bound,
inext ? "ext" : "fix");
@ -737,7 +737,7 @@ INTEGER_encode_uper(asn_TYPE_descriptor_t *td,
|| value > ct->upper_bound)
inext = 1;
}
ASN_DEBUG("Value %ld (%02x/%d) lb %ld ub %ld %s",
ASN_DEBUG("Value %ld (%02x/%zu) lb %ld ub %ld %s",
value, st->buf[0], st->size,
ct->lower_bound, ct->upper_bound,
inext ? "ext" : "fix");