]> granicus.if.org Git - graphviz/commitdiff
Fix incorrect argument to agxbput
authorerg <devnull@localhost>
Thu, 14 May 2009 16:47:54 +0000 (16:47 +0000)
committererg <devnull@localhost>
Thu, 14 May 2009 16:47:54 +0000 (16:47 +0000)
cmd/smyrna/gvprpipe.c

index 16a456e1c958599f016dcf967bd698a100d71d3b..8e44a2d4ca97019b2f5449a79702f7a610f832c5 100644 (file)
@@ -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);