Commit 524cc633 authored by Alexandre Julliard's avatar Alexandre Julliard

oleaut32: Avoid spurious debug traces when FIXMEs are disabled.

parent 6ca6bb54
...@@ -1518,11 +1518,11 @@ static HRESULT WINAPI OLEPictureImpl_Load(IPersistStream* iface, IStream *pStm) ...@@ -1518,11 +1518,11 @@ static HRESULT WINAPI OLEPictureImpl_Load(IPersistStream* iface, IStream *pStm)
FIXME("Unknown magic %04x, %ld read bytes:\n", magic, xread); FIXME("Unknown magic %04x, %ld read bytes:\n", magic, xread);
hr=E_FAIL; hr=E_FAIL;
for (i=0;i<xread+8;i++) { for (i=0;i<xread+8;i++) {
if (i<8) MESSAGE("%02x ",((unsigned char*)header)[i]); if (i<8) FIXME("%02x ",((unsigned char*)header)[i]);
else MESSAGE("%02x ",xbuf[i-8]); else FIXME("%02x ",xbuf[i-8]);
if (i % 10 == 9) MESSAGE("\n"); if (i % 10 == 9) FIXME("\n");
} }
MESSAGE("\n"); FIXME("\n");
break; break;
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment