mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-15 19:16:40 +01:00
try to fix various warnings from gcc when optimization flags are enabled
This commit is contained in:
parent
342237bf9c
commit
0cca272431
15 changed files with 44 additions and 20 deletions
|
|
@ -105,9 +105,9 @@ FPU::FPU ()
|
|||
*fxbuf = (char *) malloc (512);
|
||||
assert (*fxbuf);
|
||||
#else
|
||||
posix_memalign ((void **) &fxbuf, 16, sizeof (char *));
|
||||
(void) posix_memalign ((void **) &fxbuf, 16, sizeof (char *));
|
||||
assert (fxbuf);
|
||||
posix_memalign ((void **) fxbuf, 16, 512);
|
||||
(void) posix_memalign ((void **) fxbuf, 16, 512);
|
||||
assert (*fxbuf);
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue