Skip to content

Commit f7abf1e

Browse files
dodomorandilu-zero
authored andcommitted
Use the right splitcache buffer size
Fixes issue #61
1 parent 6af2e80 commit f7abf1e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

fft/src/smallft.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2130,7 +2130,7 @@ mod tests {
21302130
const EPSILON: c_float = 1e-6;
21312131

21322132
let mut trigcache = [0. as c_float; SIZE * 3];
2133-
let mut splitcache = [0 as c_int; SIZE * 32];
2133+
let mut splitcache = [0 as c_int; 32];
21342134

21352135
unsafe {
21362136
super::fdrffti(

0 commit comments

Comments
 (0)