Commit 7fe78c14 authored by Andrew Eikum's avatar Andrew Eikum Committed by Alexandre Julliard

ole32: Downgrade StgIsStorageFile debug info from WARN to TRACE.

parent 220af426
......@@ -8387,16 +8387,16 @@ StgIsStorageFile(LPCOLESTR fn)
CloseHandle(hf);
if (bytes_read != 8) {
WARN(" too short\n");
TRACE(" too short\n");
return S_FALSE;
}
if (!memcmp(magic,STORAGE_magic,8)) {
WARN(" -> YES\n");
TRACE(" -> YES\n");
return S_OK;
}
WARN(" -> Invalid header.\n");
TRACE(" -> Invalid header.\n");
return S_FALSE;
}
......
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