From: erg Date: Thu, 2 Oct 2008 15:21:17 +0000 (+0000) Subject: Remove extraneous space in attribute lists X-Git-Tag: LAST_LIBGRAPH~32^2~3251 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=43dbdaca54a5b9dce13f3c23b6ffc6d66d00176f;p=graphviz Remove extraneous space in attribute lists --- 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)