From 25dfcd223bece5d981aff435cef9eb60220e25a2 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Sat, 24 Mar 2018 15:09:56 +0100 Subject: [PATCH] isl_map.c: remove_if_empty: fix type of variable This was missing from isl-0.14.1-479-g370a8b7d07 (introduce isl_bool and isl_stat return types, Mon May 4 09:45:16 2015 +0200). Signed-off-by: Sven Verdoolaege --- isl_map.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isl_map.c b/isl_map.c index 47e7acd7..fa67e9b6 100644 --- a/isl_map.c +++ b/isl_map.c @@ -6194,7 +6194,7 @@ struct isl_basic_set *isl_basic_set_fix_dim_si(struct isl_basic_set *bset, static int remove_if_empty(__isl_keep isl_map *map, int i) { - int empty = isl_basic_map_plain_is_empty(map->p[i]); + isl_bool empty = isl_basic_map_plain_is_empty(map->p[i]); if (empty < 0) return -1; -- 2.11.4.GIT