Add a couple of visibility specifiers that were missing
[ardour.git] / libs / pbd / fpu.cc
index ef5d21ab4dd15c9f0561a82287cfc0383ad86028..b12d341366fe8c4ae701ebb845f613535d2be7bf 100644 (file)
@@ -108,9 +108,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