From: Matthew Fernandez Date: Wed, 6 Apr 2022 15:04:55 +0000 (-0700) Subject: Quartz plugin: mark 'quartzgen_textspan' static X-Git-Tag: 4.0.0~120^2~4 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cabace3f00bd4e07362b320e36990e7ff193e679;p=graphviz Quartz plugin: mark 'quartzgen_textspan' static This function is not used outside of its containing file. --- diff --git a/plugin/quartz/gvrender_quartz.c b/plugin/quartz/gvrender_quartz.c index ee5b4c70e..4e851b4c9 100644 --- a/plugin/quartz/gvrender_quartz.c +++ b/plugin/quartz/gvrender_quartz.c @@ -342,7 +342,7 @@ static void quartzgen_path(GVJ_t * job, int filled) CGContextDrawPath(context, filled ? kCGPathFillStroke : kCGPathStroke); } -void quartzgen_textspan(GVJ_t * job, pointf p, textspan_t * span) +static void quartzgen_textspan(GVJ_t * job, pointf p, textspan_t * span) { CGContextRef context = job->context;