commit 246f4733d824195551779a280252ee70ed255d41
parent b2d37159c8dea260119c388e445b1655ca7806d8
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Tue, 22 Jan 2019 10:23:20 +0100
Fix warning
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/senc2d_scene_analyze.c b/src/senc2d_scene_analyze.c
@@ -391,7 +391,7 @@ canceled:
/* To garanty that segments with 2 sides in the component total to 0
* regardless of numeric accuracy, we need to prevent them to
* contribute (remember than x + y - y == x can be false). */
- ASSERT(seg_comp->component[s] == cc->cc_id);
+ ASSERT(seg_comp->component[s] == cc->cc_id); (void)s;
if(seg_comp->component[SIDE_FRONT] == seg_comp->component[SIDE_BACK])
continue;