From 8bfafe1d8d086401560ec872267f70cee059d97d Mon Sep 17 00:00:00 2001 From: Tobias Grosser Date: Sat, 8 Sep 2018 10:57:03 +0200 Subject: [PATCH] isl_space_is_wrapping: use isl_bool_ok Signed-off-by: Tobias Grosser Signed-off-by: Sven Verdoolaege --- isl_space.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isl_space.c b/isl_space.c index 7e146324..c3b93235 100644 --- a/isl_space.c +++ b/isl_space.c @@ -2165,7 +2165,7 @@ isl_bool isl_space_is_wrapping(__isl_keep isl_space *space) if (!isl_space_is_set(space)) return isl_bool_false; - return space->nested[1] != NULL; + return isl_bool_ok(space->nested[1] != NULL); } /* Is "space" the space of a map where the domain is a wrapped map space? -- 2.11.4.GIT