Fix the tree at last, by reverting previous changes to RtlpCheckForActiveDebugger.
Modified: trunk/reactos/lib/rtl/exception.c
Modified: trunk/reactos/lib/rtl/rtlp.h

Modified: trunk/reactos/lib/rtl/exception.c
--- trunk/reactos/lib/rtl/exception.c	2005-09-15 19:30:27 UTC (rev 17869)
+++ trunk/reactos/lib/rtl/exception.c	2005-09-15 20:24:30 UTC (rev 17870)
@@ -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);

Modified: trunk/reactos/lib/rtl/rtlp.h
--- trunk/reactos/lib/rtl/rtlp.h	2005-09-15 19:30:27 UTC (rev 17869)
+++ trunk/reactos/lib/rtl/rtlp.h	2005-09-15 20:24:30 UTC (rev 17870)
@@ -51,7 +51,7 @@
 
 BOOLEAN
 NTAPI
-RtlpCheckForActiveDebugger(BOOLEAN Type);
+RtlpCheckForActiveDebugger(VOID);
 
 BOOLEAN
 NTAPI