From bf7c1993e1c50b42fae2d34104093717d2b505cb Mon Sep 17 00:00:00 2001 From: Emden Gansner Date: Mon, 16 Apr 2012 11:54:28 -0400 Subject: [PATCH] Fix logic test for warning. Warning should only be given if Concentrate == false and the edge is not to be ignored --- lib/common/postproc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.50.1