aboutsummaryrefslogtreecommitdiff
path: root/hsv2rgb.h
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2013-06-22 20:16:20 +0000
committerDimitri Sokolyuk <demon@dim13.org>2013-06-22 20:16:20 +0000
commit4eb398d0af04e27327d0482bf1917066420b97a2 (patch)
tree32192d84d33af98c114b2608eb09e5268e9e9899 /hsv2rgb.h
parent84632dda7f646a18893cbb363899d7e01a87f312 (diff)
Switch to X11
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