From a08f52f110688781b120fc79cde4c2b1ba6230b7 Mon Sep 17 00:00:00 2001 From: erg Date: Tue, 4 Nov 2008 17:10:20 +0000 Subject: [PATCH] Fix incorrect arguments to printf --- cmd/smyrna/topfisheyeview.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/smyrna/topfisheyeview.c b/cmd/smyrna/topfisheyeview.c index 0a813fb7f..229922b1b 100644 --- a/cmd/smyrna/topfisheyeview.c +++ b/cmd/smyrna/topfisheyeview.c @@ -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 ++; } -- 2.40.0