From 97623c5e97aa46b9421ef074ee7d3a39b8c5165e Mon Sep 17 00:00:00 2001 From: Dan Everton Date: Fri, 9 Feb 2007 23:08:12 +0000 Subject: Fix warnings in simulator builds including libspeex git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12248 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/libspeex/math_approx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/codecs/libspeex/math_approx.c b/apps/codecs/libspeex/math_approx.c index 7a20f90..54a3412 100644 --- a/apps/codecs/libspeex/math_approx.c +++ b/apps/codecs/libspeex/math_approx.c @@ -417,14 +417,14 @@ float spx_exp(float xf){ return exp_table[(int)((xf+4.0)*4.0)]; } else if (-4xf){ #ifdef SIMULATOR - printf("NtbLexp:%f,%f,%f:%d,%d:%d\n",xf,flt,xf-flt,-4xf,abs(xf-flt)); +/* printf("NtbLexp:%f,%f,%f:%d,%d:%d\n",xf,flt,xf-flt,-4xf,abs(xf-flt)); */ #endif return exp_table[(int)((xf+4.0)*4.0)]; } #ifdef SIMULATOR - printf("NTBLexp:%f,%f,%f:%d,%d:%d\n",xf,flt,xf-flt,-4xf,abs(xf-flt)); +/* printf("NTBLexp:%f,%f,%f:%d,%d:%d\n",xf,flt,xf-flt,-4xf,abs(xf-flt)); */ #endif return spx_expB(xf); //return exp(xf); -- cgit v1.1