summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2018-12-28 07:16:03 -0500
committerSolomon Peachy <pizza@shaftnet.org>2018-12-28 07:16:03 -0500
commitc77348f78031afa9d5c3f71e22a0cc3aaa795107 (patch)
treee6498164745933be57af0042660932328e63bea4
parent6c2a7ddc74257d700db71999ec751c47d4287b95 (diff)
downloadrockbox-c77348f78031afa9d5c3f71e22a0cc3aaa795107.tar.gz
rockbox-c77348f78031afa9d5c3f71e22a0cc3aaa795107.zip
Another attempt to silence the warble build warning on 32-bit hosts
Change-Id: Ib83ce41582b18641badb389c3871e501c8be697f
-rw-r--r--lib/rbcodec/codecs/librm/rm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rbcodec/codecs/librm/rm.c b/lib/rbcodec/codecs/librm/rm.c
index 87474e4482..318a9d0a2f 100644
--- a/lib/rbcodec/codecs/librm/rm.c
+++ b/lib/rbcodec/codecs/librm/rm.c
@@ -604,6 +604,6 @@ void dump_rm_context(RMContext *rmctx)
604 DEBUGF("block_align = %u\n", rmctx->block_align); 604 DEBUGF("block_align = %u\n", rmctx->block_align);
605 DEBUGF("nb_channels = %u\n", rmctx->nb_channels); 605 DEBUGF("nb_channels = %u\n", rmctx->nb_channels);
606 DEBUGF("sample_rate = %u\n", rmctx->sample_rate); 606 DEBUGF("sample_rate = %u\n", rmctx->sample_rate);
607 DEBUGF("bit_rate = %lu\n", rmctx->bit_rate ); 607 DEBUGF("bit_rate = %zu\n", rmctx->bit_rate );
608} 608}
609#endif 609#endif