Module: wine Branch: master Commit: 53383beb3773c37cd47cc79d6bb3178e32e834af URL: https://gitlab.winehq.org/wine/wine/-/commit/53383beb3773c37cd47cc79d6bb3178...
Author: Alex Henrie alexhenrie24@gmail.com Date: Mon Oct 16 23:30:54 2023 -0600
iccvid: Use debugstr_fourcc instead of debugstr_an.
---
dlls/iccvid/iccvid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/iccvid/iccvid.c b/dlls/iccvid/iccvid.c index 4dc418c590b..cffc75be58e 100644 --- a/dlls/iccvid/iccvid.c +++ b/dlls/iccvid/iccvid.c @@ -750,7 +750,7 @@ static void ICCVID_dump_BITMAPINFO(const BITMAPINFO * bmi) bmi->bmiHeader.biBitCount, bmi->bmiHeader.biHeight, bmi->bmiHeader.biWidth, - debugstr_an( (const char *)&bmi->bmiHeader.biCompression, 4 ) ); + debugstr_fourcc(bmi->bmiHeader.biCompression)); }
static inline int ICCVID_CheckMask(RGBQUAD bmiColors[3], COLORREF redMask, COLORREF blueMask, COLORREF greenMask)