Author: hbelusca Date: Fri Jan 11 22:35:44 2013 New Revision: 58157
URL: http://svn.reactos.org/svn/reactos?rev=58157&view=rev Log: [CRT] Add an error icon to the C Runtime termination message box. Patch by Lee Schröder.
CORE-6886 #resolve #comment Committed in r58157, thanks :)
Modified: trunk/reactos/lib/sdk/crt/stdlib/abort.c
Modified: trunk/reactos/lib/sdk/crt/stdlib/abort.c URL: http://svn.reactos.org/svn/reactos/trunk/reactos/lib/sdk/crt/stdlib/abort.c?... ============================================================================== --- trunk/reactos/lib/sdk/crt/stdlib/abort.c [iso-8859-1] (original) +++ trunk/reactos/lib/sdk/crt/stdlib/abort.c [iso-8859-1] Fri Jan 11 22:35:44 2013 @@ -33,7 +33,7 @@ (msvcrt_error_mode == _OUT_TO_MSGBOX)) { /* Output a message box */ - __crt_MessageBoxA(abort_msg, MB_OK); + __crt_MessageBoxA(abort_msg, MB_OK | MB_ICONERROR); } else {