From 5a0dfdd3c0b63704130f6ed287ccd8e3521c73e6 Mon Sep 17 00:00:00 2001 From: Tres Finocchiaro Date: Mon, 8 Dec 2014 12:45:31 -0500 Subject: [PATCH] minor fmaf() formatting fix. --- include/lmms_math.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/lmms_math.h b/include/lmms_math.h index 393a16d8b..ac8ab6fdc 100644 --- a/include/lmms_math.h +++ b/include/lmms_math.h @@ -134,7 +134,7 @@ static inline int fast_rand() static inline long fastFmal( long a, long b, long c ) { #ifdef FP_FAST_FMAF #ifdef __clang__ - return fma(a, b, c); + return fma( a, b, c ); #else return fmal( a, b, c ); #endif