$OpenBSD: patch-texk_ps2pkm_spaces_c,v 1.1 2005/02/21 21:36:07 sturm Exp $
--- texk/ps2pkm/spaces.c.orig	Sun Feb 13 13:47:19 2005
+++ texk/ps2pkm/spaces.c	Sun Feb 13 13:51:47 2005
@@ -741,8 +741,8 @@ struct xobject *t1_Transform(obj, cxx, c
 {
        DOUBLE M[2][2];
  
-       IfTrace1((MustTraceCalls),"Transform(%z,", obj);
-       IfTrace4((MustTraceCalls)," %f %f %f %f)\n", &cxx, &cyx, &cxy, &cyy);
+       IfTrace1((MustTraceCalls),"Transform(%p,", obj);
+       IfTrace4((MustTraceCalls)," %f %f %f %f)\n", cxx, cyx, cxy, cyy);
  
        M[0][0] = cxx;
        M[0][1] = cyx;
@@ -762,7 +762,7 @@ struct xobject *t1_Scale(obj, sx, sy)
        DOUBLE sx,sy;         /* scale factors in x and y                     */
 {
        DOUBLE M[2][2];
-       IfTrace3((MustTraceCalls),"Scale(%z, %f, %f)\n", obj, &sx, &sy);
+       IfTrace3((MustTraceCalls),"Scale(%p, %f, %f)\n", obj, sx, sy);
        M[0][0] = sx;
        M[1][1] = sy;
        M[1][0] = M[0][1] = 0.0;
@@ -785,7 +785,7 @@ struct xobject *xiRotate(obj, degrees)
        DOUBLE M[2][2];
  
  
-       IfTrace2((MustTraceCalls),"Rotate(%z, %f)\n", obj, &degrees);
+       IfTrace2((MustTraceCalls),"Rotate(%p, %f)\n", obj, degrees);
  
        M[0][0] = M[1][1] = DegreeCos(degrees);
        M[1][0] = - (M[0][1] = DegreeSin(degrees));
@@ -990,12 +990,12 @@ void FormatFP(str, fpel)
 void DumpSpace(S)
        register struct XYspace *S;
 {
-       IfTrace4(TRUE,"--Coordinate space at %x,ID=%d,convert=%x,iconvert=%x\n",
+       IfTrace4(TRUE,"--Coordinate space at %p,ID=%d,convert=%p,iconvert=%p\n",
                    S, S->ID, S->convert, S->iconvert);
        IfTrace2(TRUE,"             |  %12.3f  %12.3f  |",
-                   &S->tofract.normal[0][0], &S->tofract.normal[0][1]);
-       IfTrace2(TRUE,"   [  %p  %p ]\n", S->itofract[0][0], S->itofract[0][1]);
+                   S->tofract.normal[0][0], S->tofract.normal[0][1]);
+       IfTrace2(TRUE,"   [  %d  %d ]\n", S->itofract[0][0], S->itofract[0][1]);
        IfTrace2(TRUE,"             |  %12.3f  %12.3f  |",
-                   &S->tofract.normal[1][0], &S->tofract.normal[1][1]);
-       IfTrace2(TRUE,"   [  %p  %p ]\n", S->itofract[1][0], S->itofract[1][1]);
+                   S->tofract.normal[1][0], S->tofract.normal[1][1]);
+       IfTrace2(TRUE,"   [  %d  %d ]\n", S->itofract[1][0], S->itofract[1][1]);
 }
