isl_set_coalesce: add missing return
authorSven Verdoolaege <skimo@purples.(none)>
Sat, 5 Sep 2009 21:56:57 +0000 (23:56 +0200)
committerSven Verdoolaege <skimo@purples.(none)>
Sun, 6 Sep 2009 15:57:15 +0000 (17:57 +0200)
isl_coalesce.c

index 4abd217..6f9c82e 100644 (file)
@@ -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);
 }