From 1ff41e48fe34e68bf0a6fc918331c11f2ca313d5 Mon Sep 17 00:00:00 2001 From: Sven Verdoolaege Date: Mon, 30 Jul 2007 10:02:53 +0200 Subject: [PATCH] Param_Polyhedron_Print: print everything to given file handle --- util.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/util.c b/util.c index 3218b85..1c4f5a4 100644 --- a/util.c +++ b/util.c @@ -1035,7 +1035,7 @@ void Param_Polyhedron_Print(FILE* DST, Param_Polyhedron *PP, char **param_names) /* prints each vertex */ Print_Vertex(DST, V->Vertex, param_names); - printf( "\n" ); + fprintf(DST, "\n"); } END_FORALL_PVertex_in_ParamPolyhedron; } -- 2.11.4.GIT