commit 4a0c7248e3641d88d8f95f29d51d9443886881ca
parent 7da266df98b98ce6d13d600022715adf56f93b99
Author: Christophe Coustet <christophe.coustet@meso-star.com>
Date: Tue, 22 Jan 2019 10:04:57 +0100
Fix a warning
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/senc_scene_analyze.c b/src/senc_scene_analyze.c
@@ -395,7 +395,7 @@ extract_connex_components
/* To garanty that triangles 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(trg_comp->component[s] == cc->cc_id);
+ ASSERT(trg_comp->component[s] == cc->cc_id); (void)s;
if(trg_comp->component[SIDE_FRONT] == trg_comp->component[SIDE_BACK])
continue;