isl_space_unwrap: fix error message
authorSven Verdoolaege <skimo@kotnet.org>
Sun, 27 May 2012 12:21:16 +0000 (14:21 +0200)
committerSven Verdoolaege <skimo@kotnet.org>
Sat, 2 Jun 2012 21:34:55 +0000 (23:34 +0200)
Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
isl_space.c

index fb63873..d6dff65 100644 (file)
@@ -1567,7 +1567,7 @@ __isl_give isl_space *isl_space_unwrap(__isl_take isl_space *dim)
                return NULL;
 
        if (!isl_space_is_wrapping(dim))
-               isl_die(dim->ctx, isl_error_invalid, "not a wrapping dim",
+               isl_die(dim->ctx, isl_error_invalid, "not a wrapping space",
                        goto error);
 
        unwrap = isl_space_copy(dim->nested[1]);