summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2018-12-24 16:17:23 -0500
committerSolomon Peachy <pizza@shaftnet.org>2018-12-24 22:18:23 +0100
commitdf1d38601963a3bf5cb03dc6425a61df6b300933 (patch)
treedfb1db4c9143eb0a47ec38e4b2335e8079083ce7 /lib
parenta71af1778dc92132748879e6c14d620807a9c421 (diff)
downloadrockbox-df1d38601963a3bf5cb03dc6425a61df6b300933.tar.gz
rockbox-df1d38601963a3bf5cb03dc6425a61df6b300933.zip
Hopefully silence the warning in the warble codec build.
Change-Id: I63eef2c33bf3ea31a135cd6336882b600723f946
Diffstat (limited to 'lib')
-rw-r--r--lib/rbcodec/codecs/librm/rm.c8
1 files 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