summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/rbcodec/codecs/librm/rm.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/rbcodec/codecs/librm/rm.c b/lib/rbcodec/codecs/librm/rm.c
index e499961a7f..87474e4482 100644
--- a/lib/rbcodec/codecs/librm/rm.c
+++ b/lib/rbcodec/codecs/librm/rm.c
@@ -601,9 +601,9 @@ int rm_get_packet(uint8_t **src,RMContext *rmctx, RMPacket *pkt)
#ifdef DEBUG
void dump_rm_context(RMContext *rmctx)
{
- DEBUGF("block_align = %d\n", rmctx->block_align);
- DEBUGF("nb_channels = %d\n", rmctx->nb_channels);
- DEBUGF("sample_rate = %d\n", rmctx->sample_rate);
- DEBUGF("bit_rate = %ld\n", rmctx->bit_rate );
+ 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 = %lu\n", rmctx->bit_rate );
}
#endif