From 2c6094843c72b2b7a81522c04dc36b03cd9c2929 Mon Sep 17 00:00:00 2001 From: Solomon Peachy Date: Fri, 28 Dec 2018 07:57:23 -0500 Subject: Third attempt to shut up the warble build printf() warning. (resorting to an explicit cast this time) Change-Id: Ib5fc7bcd9e573cd32fc4372003c6c5429e339652 --- lib/rbcodec/codecs/librm/rm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3