aboutsummaryrefslogtreecommitdiff
path: root/hsv2rgb.c
diff options
context:
space:
mode:
Diffstat (limited to 'hsv2rgb.c')
-rw-r--r--hsv2rgb.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hsv2rgb.c b/hsv2rgb.c
index 03fc316..80c6dab 100644
--- a/hsv2rgb.c
+++ b/hsv2rgb.c
@@ -13,7 +13,7 @@
#include "m_pd.h"
#include <math.h>
-inline float FLOAT_CLAMP(float x) { return((x > 1.f) ? 1.f : ( (x < 0.f) ? 0.f : x)); }
+static inline float FLOAT_CLAMP(float x) { return((x > 1.f) ? 1.f : ( (x < 0.f) ? 0.f : x)); }
/////////////////////////////////////////////////////////
//