Hopefully silence the warning in the warble codec build.

Change-Id: I63eef2c33bf3ea31a135cd6336882b600723f946
This commit is contained in:
Solomon Peachy 2018-12-24 16:17:23 -05:00
parent a71af1778d
commit df1d386019

View file

@ -601,9 +601,9 @@ int rm_get_packet(uint8_t **src,RMContext *rmctx, RMPacket *pkt)
#ifdef DEBUG
void dump_rm_context(RMContext *rmctx)
{
DEBUGF("block_align = %d\n", rmctx->block_align);
DEBUGF("nb_channels = %d\n", rmctx->nb_channels);
DEBUGF("sample_rate = %d\n", rmctx->sample_rate);
DEBUGF("bit_rate = %ld\n", rmctx->bit_rate );
DEBUGF("block_align = %u\n", rmctx->block_align);
DEBUGF("nb_channels = %u\n", rmctx->nb_channels);
DEBUGF("sample_rate = %u\n", rmctx->sample_rate);
DEBUGF("bit_rate = %lu\n", rmctx->bit_rate );
}
#endif