Fix a syntax error

Introduced by the recent macro refactoring.
This commit is contained in:
Demi Marie Obenour 2022-03-09 21:21:04 -05:00
parent 52d1ea8984
commit b4d0dbcdcb

View File

@ -133,7 +133,7 @@ absl::Status PffftMain() {
if (simd_size_iter == 0) simd_size_iter = 1;
if (complex) {
SAPI_RETURN_IF_ERROR(api.cffti(n, work_array.PtrBoth()))
SAPI_RETURN_IF_ERROR(api.cffti(n, work_array.PtrBoth()));
} else {
SAPI_RETURN_IF_ERROR(api.rffti(n, work_array.PtrBoth()));
}