Module: wine Branch: master Commit: 7a92db4e8b29c02689facb3fd6c84ed0f5599be1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=7a92db4e8b29c02689facb3fd6...
Author: Austin English austinenglish@gmail.com Date: Tue Dec 9 12:20:59 2008 -0600
kernel32: Convert a warn to an err.
---
dlls/kernel32/process.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/kernel32/process.c b/dlls/kernel32/process.c index 6c6b0ca..ca941aa 100644 --- a/dlls/kernel32/process.c +++ b/dlls/kernel32/process.c @@ -1022,7 +1022,7 @@ void __wine_kernel_init(void)
if (boot_event) { - if (WaitForSingleObject( boot_event, 30000 )) WARN( "boot event wait timed out\n" ); + if (WaitForSingleObject( boot_event, 30000 )) ERR( "boot event wait timed out\n" ); CloseHandle( boot_event ); /* if we didn't find environment section, try again now that wineboot has run */ if (!got_environment)