From df1d38601963a3bf5cb03dc6425a61df6b300933 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Mon, 24 Dec 2018 16:17:23 -0500 Subject: Hopefully silence the warning in the warble codec build. Change-Id: I63eef2c33bf3ea31a135cd6336882b600723f946 --- lib/rbcodec/codecs/librm/rm.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lib/rbcodec/codecs/librm/rm.c b/lib/rbcodec/codecs/librm/rm.c index e499961a7f..87474e4482 100644 --- a/lib/rbcodec/codecs/librm/rm.c +++ b/lib/rbcodec/codecs/librm/rm.c @@ -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 -- cgit v1.2.3