tests/dft_cmp.c : Fix signed/unsigned compare warning.

This commit is contained in:
Erik de Castro Lopo 2007-08-23 21:14:09 +10:00
parent 308436a224
commit fac1cb5e08

View File

@ -40,7 +40,7 @@ double
dft_cmp_float (int linenum, const float *in_data, const float *test_data, int len, double target_snr, int allow_exit)
{ static double orig [DFT_DATA_LENGTH] ;
static double test [DFT_DATA_LENGTH] ;
int k ;
unsigned k ;
if (! orig || ! test)
{ printf ("Error (line %d) : dft_cmp_float : Bad input arrays.\n", linenum) ;