Converted x11drv to -DSTRICT.
diff --git a/graphics/x11drv/init.c b/graphics/x11drv/init.c index 5e2d83b..fe1ffc0 100644 --- a/graphics/x11drv/init.c +++ b/graphics/x11drv/init.c
@@ -210,7 +210,7 @@ case LOGPIXELSY: return log_pixels_y; case CAPS1: - FIXME("(%04x): CAPS1 is unimplemented, will return 0\n", physDev->hdc ); + FIXME("(%p): CAPS1 is unimplemented, will return 0\n", physDev->hdc ); /* please see wingdi.h for the possible bit-flag values that need to be returned. also, see http://msdn.microsoft.com/library/ddkdoc/win95ddk/graphcnt_1m0p.htm */ @@ -231,7 +231,7 @@ case BTLALIGNMENT: return 0; default: - FIXME("(%04x): unsupported capability %d, will return 0\n", physDev->hdc, cap ); + FIXME("(%p): unsupported capability %d, will return 0\n", physDev->hdc, cap ); return 0; } }