From 1399426e3f0e7744f9d0f08ce8d8d55f28f31193 Mon Sep 17 00:00:00 2001 From: Matthew Fernandez Date: Thu, 15 Jul 2021 20:46:41 -0700 Subject: [PATCH] fix a couple of comment typos --- lib/gvc/gvrender.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/gvc/gvrender.c b/lib/gvc/gvrender.c index 2d1219dc7..04ee971fb 100644 --- a/lib/gvc/gvrender.c +++ b/lib/gvc/gvrender.c @@ -458,7 +458,7 @@ void gvrender_set_pencolor(GVJ_t * job, char *name) gvcolor_t *color = &(job->obj->pencolor); char *cp = NULL; - if ((cp = strchr(name, ':'))) /* if its a color list, then use only first */ + if ((cp = strchr(name, ':'))) // if it’s a color list, then use only first *cp = '\0'; if (gvre) { gvrender_resolve_color(job->render.features, name, color); @@ -475,7 +475,7 @@ void gvrender_set_fillcolor(GVJ_t * job, char *name) gvcolor_t *color = &(job->obj->fillcolor); char *cp = NULL; - if ((cp = strchr(name, ':'))) /* if its a color list, then use only first */ + if ((cp = strchr(name, ':'))) // if it’s a color list, then use only first *cp = '\0'; if (gvre) { gvrender_resolve_color(job->render.features, name, color); -- 2.40.0