Module: wine Branch: master Commit: 524cc6339c15c8c757d9e0e8854709fdfdf06491 URL: https://gitlab.winehq.org/wine/wine/-/commit/524cc6339c15c8c757d9e0e8854709f...
Author: Alexandre Julliard julliard@winehq.org Date: Mon Sep 12 12:45:57 2022 +0200
oleaut32: Avoid spurious debug traces when FIXMEs are disabled.
---
dlls/oleaut32/olepicture.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/dlls/oleaut32/olepicture.c b/dlls/oleaut32/olepicture.c index 2f9e27042d9..1ded5f9dc2e 100644 --- a/dlls/oleaut32/olepicture.c +++ b/dlls/oleaut32/olepicture.c @@ -1518,11 +1518,11 @@ static HRESULT WINAPI OLEPictureImpl_Load(IPersistStream* iface, IStream *pStm) FIXME("Unknown magic %04x, %ld read bytes:\n", magic, xread); hr=E_FAIL; for (i=0;i<xread+8;i++) { - if (i<8) MESSAGE("%02x ",((unsigned char*)header)[i]); - else MESSAGE("%02x ",xbuf[i-8]); - if (i % 10 == 9) MESSAGE("\n"); + if (i<8) FIXME("%02x ",((unsigned char*)header)[i]); + else FIXME("%02x ",xbuf[i-8]); + if (i % 10 == 9) FIXME("\n"); } - MESSAGE("\n"); + FIXME("\n"); break; } }