From: Emden Gansner Date: Mon, 16 Apr 2012 15:54:28 +0000 (-0400) Subject: Fix logic test for warning. Warning should only be given if Concentrate == false X-Git-Tag: LAST_LIBGRAPH~32^2~447 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bf7c1993e1c50b42fae2d34104093717d2b505cb;p=graphviz Fix logic test for warning. Warning should only be given if Concentrate == false and the edge is not to be ignored --- diff --git a/lib/common/postproc.c b/lib/common/postproc.c index 65fc35f00..1c8a0635d 100644 --- a/lib/common/postproc.c +++ b/lib/common/postproc.c @@ -93,7 +93,7 @@ static void map_edge(edge_t * e) bezier bz; if (ED_spl(e) == NULL) { - if ((Concentrate == FALSE) || (ED_edge_type(e) != IGNORED)) + if ((Concentrate == FALSE) && (ED_edge_type(e) != IGNORED)) agerr(AGERR, "lost %s %s edge\n", agnameof(agtail(e)), agnameof(aghead(e))); return;