Commit d6847771 authored by Rein Klazes's avatar Rein Klazes Committed by Alexandre Julliard

Change return code from ExitWindowsEx() (and with that related

ExitWindows* functions) from FALSE to TRUE.
parent 485390de
...@@ -330,7 +330,7 @@ BOOL WINAPI ExitWindowsEx( UINT flags, DWORD reserved ) ...@@ -330,7 +330,7 @@ BOOL WINAPI ExitWindowsEx( UINT flags, DWORD reserved )
HeapFree( GetProcessHeap(), 0, list ); HeapFree( GetProcessHeap(), 0, list );
if (result) ExitKernel16(); if (result) ExitKernel16();
return FALSE; return TRUE;
} }
/*********************************************************************** /***********************************************************************
......
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