Third attempt to shut up the warble build printf() warning.

(resorting to an explicit cast this time)

Change-Id: Ib5fc7bcd9e573cd32fc4372003c6c5429e339652
This commit is contained in:
Solomon Peachy 2018-12-28 07:57:23 -05:00
parent c77348f780
commit 2c6094843c

View file

@ -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