From: Sven Verdoolaege Date: Sat, 5 Sep 2009 21:56:57 +0000 (+0200) Subject: isl_set_coalesce: add missing return X-Git-Tag: isl-0.01~28 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d8021cc8c83d8478106a7bd37ea151e2873284c9;p=platform%2Fupstream%2Fisl.git isl_set_coalesce: add missing return --- diff --git a/isl_coalesce.c b/isl_coalesce.c index 4abd217..6f9c82e 100644 --- a/isl_coalesce.c +++ b/isl_coalesce.c @@ -618,5 +618,5 @@ error: */ struct isl_set *isl_set_coalesce(struct isl_set *set) { - (struct isl_set *)isl_map_coalesce((struct isl_map *)set); + return (struct isl_set *)isl_map_coalesce((struct isl_map *)set); }