From: erg Date: Thu, 14 May 2009 16:47:54 +0000 (+0000) Subject: Fix incorrect argument to agxbput X-Git-Tag: LAST_LIBGRAPH~32^2~2067 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=c70606c1cbbe5d94d4544bcc12dd4f2b3bc90844;p=graphviz Fix incorrect argument to agxbput --- diff --git a/cmd/smyrna/gvprpipe.c b/cmd/smyrna/gvprpipe.c index 16a456e1c..8e44a2d4c 100644 --- a/cmd/smyrna/gvprpipe.c +++ b/cmd/smyrna/gvprpipe.c @@ -208,7 +208,7 @@ exec_gvpr(char* filename,Agraph_t* srcGraph) agxbinit (&xbuf, SMALLBUF, bf); agxbput (&xbuf, "gvpr -c -f "); - agxbput (&bf, filename); + agxbput (&xbuf, filename); #ifdef WIN32 CreateChildProcess (agxbuse (&xbuf), SmyrnaToGvprRd, GvprToSmyrnaWr);