Supply missing casts that are needed by IBM compiler.
authorChris Hanson <org/chris-hanson/cph>
Mon, 30 Oct 1995 07:55:05 +0000 (07:55 +0000)
committerChris Hanson <org/chris-hanson/cph>
Mon, 30 Oct 1995 07:55:05 +0000 (07:55 +0000)
v7/src/microcode/pros2fs.c

index ff0e918b3179037b8cc0fbe60c560a887af96dbd..2785e3b217dab4a53e196b101cd29aa6904485f0 100644 (file)
@@ -1,6 +1,6 @@
 /* -*-C-*-
 
-$Id: pros2fs.c,v 1.11 1995/10/28 01:30:51 cph Exp $
+$Id: pros2fs.c,v 1.12 1995/10/30 07:55:05 cph Exp $
 
 Copyright (c) 1994-95 Massachusetts Institute of Technology
 
@@ -433,7 +433,7 @@ DEFINE_PRIMITIVE ("OS2-COPY-FILE", Prim_OS2_copy_file, 2, 2, 0)
        (info -> attrFile) &=~ FILE_READONLY;
        OS2_write_file_status (to, info);
       }
-    STD_API_CALL (dos_copy, (from, to, DCPY_EXISTING));
+    STD_API_CALL (dos_copy, (((PSZ) from), ((PSZ) to), DCPY_EXISTING));
   }
   PRIMITIVE_RETURN (UNSPECIFIC);
 }