From: Sven Verdoolaege Date: Sun, 23 Jan 2011 14:42:47 +0000 (+0100) Subject: isl_union_templ.c: fix typo X-Git-Tag: isl-0.06~23^2~8 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c56c1fcdac106ab70da4e8b69ca7414271eff9d2;p=platform%2Fupstream%2Fisl.git isl_union_templ.c: fix typo Signed-off-by: Sven Verdoolaege --- diff --git a/isl_union_templ.c b/isl_union_templ.c index a04759f..6a3127a 100644 --- a/isl_union_templ.c +++ b/isl_union_templ.c @@ -49,7 +49,7 @@ static __isl_give UNION *FN(UNION,alloc)(__isl_take isl_dim *dim, int size) if (!dim) return NULL; - u = isl_calloc_type(ctx, UNION); + u = isl_calloc_type(dim->ctx, UNION); if (!u) return NULL;