]> git.sesse.net Git - vlc/blobdiff - modules/visualization/visual/fft.c
Another bunch of useless test.
[vlc] / modules / visualization / visual / fft.c
index fa663965654b44836deede65c75f766151f32944..82bd591bb1c52b604905a3f7567f18142e39dddf 100644 (file)
@@ -109,7 +109,7 @@ void fft_perform(const sound_sample *input, float *output, fft_state *state) {
  * Free the state.
  */
 void fft_close(fft_state *state) {
-    if(state) free(state);
+    free( state );
 }
 
 /*****************************************************************************