aboutsummaryrefslogtreecommitdiff
path: root/hsv2rgb.h
diff options
context:
space:
mode:
Diffstat (limited to 'hsv2rgb.h')
-rw-r--r--hsv2rgb.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/hsv2rgb.h b/hsv2rgb.h
index 9851ca0..1cacf20 100644
--- a/hsv2rgb.h
+++ b/hsv2rgb.h
@@ -18,6 +18,6 @@
#ifndef __HSV2RGB_H
#define __HSV2RGB_H
-int hsv2rgb(uint8_t *r, uint8_t *g, uint8_t *b, float h, float s, float v);
+void hsv2rgb(float *r, float *g, float *b, float h, float s, float v);
#endif