--- trunk/reactos/lib/rtl/exception.c 2005-09-15 17:26:56 UTC (rev 17866)
+++ trunk/reactos/lib/rtl/exception.c 2005-09-15 19:14:42 UTC (rev 17867)
@@ -39,7 +39,7 @@
Context.ContextFlags = CONTEXT_FULL;
/* Check if we're being debugged (user-mode only) */
- if (!RtlpCheckForActiveDebugger(TRUE))
+ if (!RtlpCheckForActiveDebugger())
{
/* Raise an exception immediately */
Status = ZwRaiseException(ExceptionRecord, &Context, TRUE);
@@ -91,7 +91,7 @@
Context.ContextFlags = CONTEXT_FULL;
/* Check if we're being debugged (user-mode only) */
- if (!RtlpCheckForActiveDebugger(TRUE))
+ if (!RtlpCheckForActiveDebugger())
{
/* Raise an exception immediately */
ZwRaiseException(&ExceptionRecord, &Context, TRUE);