Skip to content

Commit

Permalink
common: fftlib - compile fix for greenfft
Browse files Browse the repository at this point in the history
Signed-off-by: Tim Blechmann <tim@klingt.org>
  • Loading branch information
timblechmann committed Oct 30, 2012
1 parent a6387b0 commit d3b3285
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common/SC_fftlib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ static float* create_cosTable(int log2n)
{
int size = 1 << log2n;
int size2 = size / 4 + 1;
float *win = (float*)malloc_aligned(size2 * sizeof(float));
float *win = (float*)nova::malloc_aligned(size2 * sizeof(float));
if (win == NULL)
return NULL;

Expand Down

0 comments on commit d3b3285

Please sign in to comment.