aboutsummaryrefslogtreecommitdiff
path: root/pgm.c
diff options
context:
space:
mode:
Diffstat (limited to 'pgm.c')
-rw-r--r--pgm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pgm.c b/pgm.c
index 654f4b7..a1d3124 100644
--- a/pgm.c
+++ b/pgm.c
@@ -15,7 +15,7 @@ int pgm_write_pixel(FILE *fp, color_t *c)
return fprintf(fp, "%.0lf %.0lf %.0lf\n", c->r * COLOR_MAX, c->g * COLOR_MAX, c->b * COLOR_MAX);
}
-color_t *color_set(color_t *c, uint8_t r, uint8_t g, uint8_t b)
+color_t *color_set(color_t *c, COORD_T r, COORD_T g, COORD_T b)
{
if (!c) {
c = (color_t *) malloc(sizeof(color_t));