Change RECT to use LONG to match win32 standard headers and fix format
strings to use %ld for RECT elements.
diff --git a/dlls/wineps/init.c b/dlls/wineps/init.c
index 5b8c000..9a422c4 100644
--- a/dlls/wineps/init.c
+++ b/dlls/wineps/init.c
@@ -222,7 +222,7 @@
physDev->PageSize.cy = 0;
}
- TRACE("ImageableArea = %d,%d - %d,%d: PageSize = %ldx%ld\n",
+ TRACE("ImageableArea = %ld,%ld - %ld,%ld: PageSize = %ldx%ld\n",
physDev->ImageableArea.left, physDev->ImageableArea.bottom,
physDev->ImageableArea.right, physDev->ImageableArea.top,
physDev->PageSize.cx, physDev->PageSize.cy);