From 43dbdaca54a5b9dce13f3c23b6ffc6d66d00176f Mon Sep 17 00:00:00 2001 From: erg Date: Thu, 2 Oct 2008 15:21:17 +0000 Subject: [PATCH] Remove extraneous space in attribute lists --- lib/graph/graphio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/graph/graphio.c b/lib/graph/graphio.c index 28a525dfa..f916c7950 100644 --- a/lib/graph/graphio.c +++ b/lib/graph/graphio.c @@ -279,7 +279,7 @@ static void writeattr(FILE * fp, int *npp, char *name, char *val) { fprintf(fp, ++(*npp) > 1 ? ", " : " ["); fprintf(fp, "%s=", agcanonical(name)); - fprintf(fp, "%s ", agcanonical(val)); + fprintf(fp, "%s", agcanonical(val)); } void agwrnode(Agraph_t * g, FILE * fp, Agnode_t * n, int full, int indent) -- 2.40.0