1
0
mirror of https://github.com/gnss-sdr/gnss-sdr synced 2024-11-05 01:26:24 +00:00

Remove warning

This commit is contained in:
Carles Fernandez 2017-08-25 23:51:11 +02:00 committed by Damian Miralles
parent 6a4a2db4bf
commit b9b0bf1ef8
2 changed files with 2 additions and 2 deletions

View File

@ -915,7 +915,7 @@ SET_OF_decode_uper(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
nelems = uper_get_length(pd,
ct ? ct->effective_bits : -1, &repeat);
ASN_DEBUG("Got to decode %d elements (eff %d)",
(int)nelems, (int)ct ? ct->effective_bits : -1);
(int)nelems, (long)ct ? ct->effective_bits : -1);
if(nelems < 0) _ASN_DECODE_STARVED;
}

View File

@ -915,7 +915,7 @@ SET_OF_decode_uper(asn_codec_ctx_t *opt_codec_ctx, asn_TYPE_descriptor_t *td,
nelems = uper_get_length(pd,
ct ? ct->effective_bits : -1, &repeat);
ASN_DEBUG("Got to decode %d elements (eff %d)",
(int)nelems, (int)ct ? ct->effective_bits : -1);
(int)nelems, (long)ct ? ct->effective_bits : -1);
if(nelems < 0) _ASN_DECODE_STARVED;
}