isl_convex_hull.c: add missing assignment
authorSven Verdoolaege <skimo@kotnet.org>
Thu, 9 Jul 2009 13:49:07 +0000 (15:49 +0200)
committerSven Verdoolaege <skimo@kotnet.org>
Mon, 13 Jul 2009 11:02:36 +0000 (13:02 +0200)
isl_convex_hull.c

index d11daa4..3912cbf 100644 (file)
@@ -1068,7 +1068,7 @@ static struct isl_basic_set *modulo_lineality(struct isl_set *set,
        isl_mat_free(set->ctx, M);
        isl_basic_set_free(lin);
 
-       isl_mat_drop_rows(set->ctx, Q, Q->n_row - lin_dim, lin_dim);
+       Q = isl_mat_drop_rows(set->ctx, Q, Q->n_row - lin_dim, lin_dim);
 
        U = isl_mat_lin_to_aff(set->ctx, U);
        Q = isl_mat_lin_to_aff(set->ctx, Q);