Fix more pedantic errors in pffft

This commit is contained in:
2024-11-13 01:15:54 -06:00
parent 0f864f512a
commit 879039574d
3 changed files with 7 additions and 7 deletions

View File

@@ -58,7 +58,7 @@ typedef union v4sf_union {
# define VARCH "4xScalar"
# define VREQUIRES_ALIGN 0
static ALWAYS_INLINE(v4sf) VZERO() {
static ALWAYS_INLINE(v4sf) VZERO(void) {
v4sf r = { 0.f, 0.f, 0.f, 0.f };
return r;
}