From fd542f41fc53937046deca908ce92c66230f5391 Mon Sep 17 00:00:00 2001 From: erg Date: Fri, 3 Oct 2008 15:22:12 +0000 Subject: [PATCH] Fix warning about const. If anyone wants to do the work necessary to fix all the warnings, feel free. --- lib/common/emit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/common/emit.c b/lib/common/emit.c index 3fedcdacc..c60d3d607 100644 --- a/lib/common/emit.c +++ b/lib/common/emit.c @@ -2887,7 +2887,7 @@ int gvRenderJobs (GVC_t * gvc, graph_t * g) /* Show_boxes is not defined, if at all, * until splines are generated in dot */ - job->common->show_boxes = Show_boxes; + job->common->show_boxes = (const char**)Show_boxes; #endif emit_graph(job, g); } -- 2.40.0