summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/codecs/adx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/codecs/adx.c b/apps/codecs/adx.c
index c3a64b1efe..c265f0cd56 100644
--- a/apps/codecs/adx.c
+++ b/apps/codecs/adx.c
@@ -250,7 +250,7 @@ next_track:
250 250
251 coef1 = (c*8192) >> 28; 251 coef1 = (c*8192) >> 28;
252 coef2 = (c*c/big28*-4096) >> 28; 252 coef2 = (c*c/big28*-4096) >> 28;
253 DEBUGF("ADX: samprate=%lld ",frequency); 253 DEBUGF("ADX: samprate=%ld ",(long)frequency);
254 DEBUGF("coef1 %04x ",(unsigned int)(coef1*4)); 254 DEBUGF("coef1 %04x ",(unsigned int)(coef1*4));
255 DEBUGF("coef2 %04x\n",(unsigned int)(coef2*-4)); 255 DEBUGF("coef2 %04x\n",(unsigned int)(coef2*-4));
256 } 256 }