From 5897feb748ebc7f239b67a493662772c73527e99 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Wed, 26 Apr 2017 17:20:44 +0200 Subject: [PATCH] isl_list_templ.c: fix harmless typo in code The FN macro is meant to construct the name of a function, so use it that way. Signed-off-by: Sven Verdoolaege --- isl_list_templ.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/isl_list_templ.c b/isl_list_templ.c index 84292279..ebfd6483 100644 --- a/isl_list_templ.c +++ b/isl_list_templ.c @@ -282,7 +282,7 @@ isl_stat FN(LIST(EL),foreach)(__isl_keep LIST(EL) *list, return isl_stat_error; for (i = 0; i < list->n; ++i) { - EL *el = FN(EL,copy(list->p[i])); + EL *el = FN(EL,copy)(list->p[i]); if (!el) return isl_stat_error; if (fn(el, user) < 0) -- 2.11.4.GIT