From: erg Date: Wed, 22 Dec 2010 22:37:38 +0000 (+0000) Subject: Fix wrong order of function parameters X-Git-Tag: LAST_LIBGRAPH~32^2~1124 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=eca086b6160092c6b2d19f951d303a3b0eaf03ae;p=graphviz Fix wrong order of function parameters --- diff --git a/cmd/tools/gmlparse.y b/cmd/tools/gmlparse.y index 906bed655..6872eddc4 100644 --- a/cmd/tools/gmlparse.y +++ b/cmd/tools/gmlparse.y @@ -812,7 +812,7 @@ gml_to_gv (char* name, FILE* fp, int cnt, int* errors) else { agxbinit (&xb, BUFSIZ, buf); agxbinit (&unk, BUFSIZ, unknownb); - g = mkGraph (G, name, NULL, &xb, &unk); + g = mkGraph (G, NULL, name, &xb, &unk); agxbfree (&xb); }