isl_convex_hull.c: convex_hull_pair: use isl_bool for local variables
authorSven Verdoolaege <sven.verdoolaege@gmail.com>
Tue, 14 Aug 2018 14:14:07 +0000 (14 16:14 +0200)
committerSven Verdoolaege <sven.verdoolaege@gmail.com>
Wed, 22 Aug 2018 12:06:52 +0000 (22 14:06 +0200)
This was missing from isl-0.14.1-479-g370a8b7d0 (introduce isl_bool and
isl_stat return types, Mon May 4 09:45:16 2015 +0200).

Signed-off-by: Sven Verdoolaege <sven.verdoolaege@gmail.com>
isl_convex_hull.c

index 3507777..81b6ab6 100644 (file)
@@ -1295,7 +1295,7 @@ static __isl_give isl_basic_set *convex_hull_pair(
        __isl_take isl_basic_set *bset1, __isl_take isl_basic_set *bset2)
 {
        isl_basic_set *lin, *aff;
-       int bounded1, bounded2;
+       isl_bool bounded1, bounded2;
 
        if (bset1->ctx->opt->convex == ISL_CONVEX_HULL_FM)
                return convex_hull_pair_elim(bset1, bset2);