]> granicus.if.org Git - graphviz/commitdiff
Fix incorrect arguments to printf
authorerg <devnull@localhost>
Tue, 4 Nov 2008 17:10:20 +0000 (17:10 +0000)
committererg <devnull@localhost>
Tue, 4 Nov 2008 17:10:20 +0000 (17:10 +0000)
cmd/smyrna/topfisheyeview.c

index 0a813fb7f8f3c38937588c1c92b3ffa24d9243e1..229922b1bfe09d4325bcf0dd1bd6b440a021840e 100644 (file)
@@ -408,7 +408,7 @@ static int get_temp_coords(topview* t,int level,int v,double* coord_x,double* co
                if (recorded < 100)
                {
                        printf ("OAL  AL  (x0,y0)-(x1,y1) current \n");
-                       printf ("%i   %i  (%f,%f)-(%f,%f) (%f,%f)\n",OAL,AL,x0,y0,x1,y1,coord_x,coord_y);
+                       printf ("%i   %i  (%f,%f)-(%f,%f) (%f,%f)\n",OAL,AL,x0,y0,x1,y1,*coord_x,*coord_y);
                        recorded ++;
                }