commit 498af6e5a6ee3bfc457c1ae8ee9ec9a8947a6ad4
parent d3bda6fe17010abcdc5a747e0b4707be8966fd60
Author: Vincent Forest <vincent.forest@meso-star.com>
Date: Mon, 27 Mar 2017 16:25:15 +0200
Fix a minor compilation warning
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/sstl.c b/src/sstl.c
@@ -61,7 +61,7 @@ struct vertex { float xyz[3]; };
static INLINE char
eq_vertex(const struct vertex* a, const struct vertex* b)
{
- return f3_eq(a->xyz, b->xyz);
+ return (char)f3_eq(a->xyz, b->xyz);
}
/* Declare the hash table that map a vertex to its index */