Another attempt to silence the warble build warning on 32-bit hosts

Change-Id: Ib83ce41582b18641badb389c3871e501c8be697f
This commit is contained in:
Solomon Peachy 2018-12-28 07:16:03 -05:00
parent 6c2a7ddc74
commit c77348f780

View file

@ -604,6 +604,6 @@ void dump_rm_context(RMContext *rmctx)
DEBUGF("block_align = %u\n", rmctx->block_align); DEBUGF("block_align = %u\n", rmctx->block_align);
DEBUGF("nb_channels = %u\n", rmctx->nb_channels); DEBUGF("nb_channels = %u\n", rmctx->nb_channels);
DEBUGF("sample_rate = %u\n", rmctx->sample_rate); DEBUGF("sample_rate = %u\n", rmctx->sample_rate);
DEBUGF("bit_rate = %lu\n", rmctx->bit_rate ); DEBUGF("bit_rate = %zu\n", rmctx->bit_rate );
} }
#endif #endif