filterbank.c: avoid useless usigned comparison
authorPaul Brossier <piem@piem.org>
Sat, 24 Nov 2007 18:05:54 +0000 (19:05 +0100)
committerPaul Brossier <piem@piem.org>
Sat, 24 Nov 2007 18:05:54 +0000 (19:05 +0100)
src/filterbank.c

index d60890a000568c37e4595dba4b74b5f699a4198b..c009e21e8d7afdfa34c07c5a71e36e6876acf2ae 100644 (file)
@@ -24,8 +24,6 @@
 #include "filterbank.h"
 #include "mathutils.h"
 
-#include "stdio.h"
-
 #define VERY_SMALL_NUMBER 2e-42
 
 /** \brief A structure to store a set of n_filters filters of lenghts win_s */
@@ -215,6 +213,6 @@ void aubio_filterbank_do(aubio_filterbank_t * f, cvec_t * in, fvec_t *out) {
 }
 
 fvec_t * aubio_filterbank_getchannel(aubio_filterbank_t * f, uint_t channel) {
-  if ( (channel >= 0) && (channel < f->n_filters) ) { return f->filters[channel]; }
+  if ( (channel < f->n_filters) ) { return f->filters[channel]; }
   else { return NULL; }
 }