ole32: Downgrade StgIsStorageFile debug info from WARN to TRACE.

This commit is contained in:
Andrew Eikum 2010-01-06 10:59:03 -06:00 committed by Alexandre Julliard
parent 220af426b3
commit 7fe78c14e9
1 changed files with 3 additions and 3 deletions

View File

@ -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;
}