From 53383beb3773c37cd47cc79d6bb3178e32e834af Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Mon, 16 Oct 2023 23:30:54 -0600 Subject: [PATCH] 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)