summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSven Verdoolaege <skimo@kotnet.org>2013-06-11 23:05:22 +0200
committerSven Verdoolaege <skimo@kotnet.org>2013-06-11 23:05:22 +0200
commit6d28e7c5ff2b41ec88fa32664cc446807af5843d (patch)
treea48776d7b744c037b4eb92ea46e6520a21ceabbd
parent4fff6cf84785a942c0676848ea2ae4115820b327 (diff)
downloadisl-6d28e7c5ff2b41ec88fa32664cc446807af5843d.tar.gz
isl-6d28e7c5ff2b41ec88fa32664cc446807af5843d.tar.bz2
isl-6d28e7c5ff2b41ec88fa32664cc446807af5843d.zip
isl_local_space_substitute_equalities: improve error message
Signed-off-by: Sven Verdoolaege <skimo@kotnet.org>
-rw-r--r--isl_local_space.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/isl_local_space.c b/isl_local_space.c
index 42f3e9ff..a8e5ebac 100644
--- a/isl_local_space.c
+++ b/isl_local_space.c
@@ -728,7 +728,7 @@ __isl_give isl_local_space *isl_local_space_substitute_equalities(
total = isl_space_dim(eq->dim, isl_dim_all);
if (isl_local_space_dim(ls, isl_dim_all) != total)
isl_die(isl_local_space_get_ctx(ls), isl_error_invalid,
- "dimensions don't match", goto error);
+ "spaces don't match", goto error);
total++;
n_div = eq->n_div;
for (i = 0; i < eq->n_eq; ++i) {