summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSolomon Peachy <pizza@shaftnet.org>2018-12-28 07:57:23 -0500
committerSolomon Peachy <pizza@shaftnet.org>2018-12-28 07:57:23 -0500
commit2c6094843c72b2b7a81522c04dc36b03cd9c2929 (patch)
tree24a9e2e6c2d5b76421181ce8788ee726d7eb95ee
parentc77348f78031afa9d5c3f71e22a0cc3aaa795107 (diff)
downloadrockbox-2c60948.tar.gz
rockbox-2c60948.zip
Third attempt to shut up the warble build printf() warning.
(resorting to an explicit cast this time) Change-Id: Ib5fc7bcd9e573cd32fc4372003c6c5429e339652
-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 318a9d0a2f..e64d2efff7 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)
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 = %zu\n", rmctx->bit_rate );
+ DEBUGF("bit_rate = %lu\n", (unsigned long) rmctx->bit_rate );
}
#endif