Module: wine Branch: master Commit: a3cf7a4e0657a82ad53f34b1a61213d867ce4e19 URL: http://source.winehq.org/git/wine.git/?a=commit;h=a3cf7a4e0657a82ad53f34b1a6...
Author: Austin English austinenglish@gmail.com Date: Wed Nov 18 14:09:20 2009 -0600
winex11.drv: Downgrade an ERR to a WARN.
---
dlls/winex11.drv/bitmap.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/winex11.drv/bitmap.c b/dlls/winex11.drv/bitmap.c index 47d2562..5992b31 100644 --- a/dlls/winex11.drv/bitmap.c +++ b/dlls/winex11.drv/bitmap.c @@ -144,7 +144,7 @@ BOOL CDECL X11DRV_CreateBitmap( X11DRV_PDEVICE *physDev, HBITMAP hbitmap, LPVOID /* check if bpp is compatible with screen depth */ if (!((bitmap.bmBitsPixel == 1) || (bitmap.bmBitsPixel == screen_bpp))) { - ERR("Trying to make bitmap with planes=%d, bpp=%d\n", + WARN("Trying to make bitmap with planes=%d, bpp=%d\n", bitmap.bmPlanes, bitmap.bmBitsPixel); return FALSE; }