From 5ff75d629dc4e59504cd24d7fe2c4c75fee3ccf5 Mon Sep 17 00:00:00 2001 From: "Emden R. Gansner" Date: Thu, 6 Mar 2014 10:42:55 -0500 Subject: [PATCH] Fix conversion error in DotIO.c --- lib/sparse/DotIO.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/sparse/DotIO.c b/lib/sparse/DotIO.c index 0468531c3..3b2da494f 100644 --- a/lib/sparse/DotIO.c +++ b/lib/sparse/DotIO.c @@ -362,7 +362,7 @@ int Import_dot_splines(Agraph_t* g, int *ne, char ***xsplines){ for (n = agfstnode (g); n; n = agnxtnode (g, n)) ND_id(n) = i++; - sym = agattr(g, AGNODE, "pos", 0); + sym = agattr(g, AGEDGE, "pos", 0); if (!sym) return 0; if (!(*xsplines)) *xsplines = malloc(sizeof(char*)*nedges); -- 2.50.1