summaryrefslogtreecommitdiff
path: root/libs/pbd/fpu.cc
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2013-11-04 21:32:41 -0500
committerPaul Davis <paul@linuxaudiosystems.com>2013-11-04 21:32:41 -0500
commit0cca2724311b8df9989dc46efad12bdbe05c3883 (patch)
tree263a41299101aa9de989192de2d62e113725d494 /libs/pbd/fpu.cc
parent342237bf9c71927b5b6017c527a2d54b5c8be250 (diff)
try to fix various warnings from gcc when optimization flags are enabled
Diffstat (limited to 'libs/pbd/fpu.cc')
-rw-r--r--libs/pbd/fpu.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/pbd/fpu.cc b/libs/pbd/fpu.cc
index 40f8cca9d6..8929491cd9 100644
--- a/libs/pbd/fpu.cc
+++ b/libs/pbd/fpu.cc
@@ -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