Module: wine Branch: master Commit: 7fe78c14e9cb969d182a3854e6e30b1cd35d6442 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7fe78c14e9cb969d182a3854e6...
Author: Andrew Eikum aeikum@codeweavers.com Date: Wed Jan 6 10:59:03 2010 -0600
ole32: Downgrade StgIsStorageFile debug info from WARN to TRACE.
---
dlls/ole32/storage32.c | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/ole32/storage32.c b/dlls/ole32/storage32.c index 0e78a6d..39ed710 100644 --- a/dlls/ole32/storage32.c +++ b/dlls/ole32/storage32.c @@ -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; }