$OpenBSD: patch-texk_ps2pkm_type1_c,v 1.1 2005/02/21 21:36:07 sturm Exp $
--- texk/ps2pkm/type1.c.orig	Sun Feb 13 13:54:33 2005
+++ texk/ps2pkm/type1.c	Sun Feb 13 13:55:57 2005
@@ -1155,7 +1155,7 @@ static void Escape(Code)
 static void HStem(y, dy)
   DOUBLE y, dy;
 {
-  IfTrace2((FontDebug), "Hstem %f %f\n", &y, &dy);
+  IfTrace2((FontDebug), "Hstem %f %f\n", y, dy);
   if (ProcessHints) {
     if (numstems >= MAXSTEMS) Error0("HStem: Too many hints\n");
     if (dy < 0.0) {y += dy; dy = -dy;}
@@ -1176,7 +1176,7 @@ static void HStem(y, dy)
 static void VStem(x, dx)
   DOUBLE x, dx;
 {
-  IfTrace2((FontDebug), "Vstem %f %f\n", &x, &dx);
+  IfTrace2((FontDebug), "Vstem %f %f\n", x, dx);
   if (ProcessHints) {
     if (numstems >= MAXSTEMS) Error0("VStem: Too many hints\n");
     if (dx < 0.0) {x += dx; dx = -dx;}
@@ -1197,7 +1197,7 @@ static void RLineTo(dx, dy)
 {
   struct segment *B;
  
-  IfTrace2((FontDebug), "RLineTo %f %f\n", &dx, &dy);
+  IfTrace2((FontDebug), "RLineTo %f %f\n", dx, dy);
  
   B = Loc(CharSpace, dx, dy);
  
@@ -1220,8 +1220,8 @@ static void RRCurveTo(dx1, dy1, dx2, dy2
 {
   struct segment *B, *C, *D;
  
-  IfTrace4((FontDebug), "RRCurveTo %f %f %f %f ", &dx1, &dy1, &dx2, &dy2);
-  IfTrace2((FontDebug), "%f %f\n", &dx3, &dy3);
+  IfTrace4((FontDebug), "RRCurveTo %f %f %f %f ", dx1, dy1, dx2, dy2);
+  IfTrace2((FontDebug), "%f %f\n", dx3, dy3);
  
   B = Loc(CharSpace, dx1, dy1);
   C = Loc(CharSpace, dx2, dy2);
@@ -1311,7 +1311,7 @@ static void RMoveTo(dx,dy)
 {
   struct segment *B;
  
-  IfTrace2((FontDebug), "RMoveTo %f %f\n", &dx, &dy);
+  IfTrace2((FontDebug), "RMoveTo %f %f\n", dx, dy);
  
   B = Loc(CharSpace, dx, dy);
  
@@ -1342,7 +1342,7 @@ static void Seac(DOUBLE asb, DOUBLE adx,
   int Code;
   struct segment *mypath;
  
-  IfTrace4((FontDebug), "SEAC %f %f %f %d ", &asb, &adx, &ady, bchar);
+  IfTrace4((FontDebug), "SEAC %f %f %f %d ", asb, adx, ady, bchar);
   IfTrace1((FontDebug), "%d\n", achar);
  
   /* Move adx - asb, ady over and up from base char's sbpoint. */
@@ -1406,7 +1406,7 @@ static void Seac(DOUBLE asb, DOUBLE adx,
 static void Sbw(sbx, sby, wx, wy)
   DOUBLE sbx, sby, wx, wy;
 {
-  IfTrace4((FontDebug), "SBW %f %f %f %f\n", &sbx, &sby, &wx, &wy);
+  IfTrace4((FontDebug), "SBW %f %f %f %f\n", sbx, sby, wx, wy);
  
   escapementX = wx; /* Character width vector */
   escapementY = wy;
@@ -1424,7 +1424,7 @@ static void Sbw(sbx, sby, wx, wy)
 static DOUBLE Div(num1, num2)
   DOUBLE num1, num2;
 {
-  IfTrace2((FontDebug), "Div %f %f\n", &num1, &num2);
+  IfTrace2((FontDebug), "Div %f %f\n", num1, num2);
   return(num1 / num2);
 }
  
@@ -1754,7 +1754,7 @@ static void CallOtherSubr(othersubrno)
 static void SetCurrentPoint(x, y)
   DOUBLE x, y;
 {
-  IfTrace2((FontDebug), "SetCurrentPoint %f %f\n", &x, &y);
+  IfTrace2((FontDebug), "SetCurrentPoint %f %f\n", x, y);
  
   currx = x;
   curry = y;
