mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-10-14 02:27:39 -04:00
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:
parent
c77348f780
commit
2c6094843c
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue