Commit in reactos on MAIN
ntoskrnl/ps/i386/continue.c+3-31.2 -> 1.3
subsys/win32k/objects/cursoricon.c+6-61.61 -> 1.62
drivers/net/ndis/ndis/main.c+1-11.13 -> 1.14
drivers/net/tcpip/tcpip/main.c+1-11.24 -> 1.25
+11-11
4 modified files
Silence debug messages

reactos/ntoskrnl/ps/i386
continue.c 1.2 -> 1.3
diff -u -r1.2 -r1.3
--- continue.c	2 Jul 2004 01:23:26 -0000	1.2
+++ continue.c	7 Jul 2004 08:39:53 -0000	1.3
@@ -1,4 +1,4 @@
-/* $Id: continue.c,v 1.2 2004/07/02 01:23:26 royce Exp $
+/* $Id: continue.c,v 1.3 2004/07/07 08:39:53 gvg Exp $
  *
  * COPYRIGHT:              See COPYING in the top level directory
  * PROJECT:                ReactOS kernel
@@ -42,10 +42,10 @@
 	PKTRAP_FRAME TrapFrame = KeGetCurrentThread()->TrapFrame;
 	PKTRAP_FRAME PrevTrapFrame = (PKTRAP_FRAME)TrapFrame->Edx;
 
-	DPRINT1("NtContinue: Context: Eip=0x%x, Esp=0x%x\n", Context->Eip, Context->Esp );
+	DPRINT("NtContinue: Context: Eip=0x%x, Esp=0x%x\n", Context->Eip, Context->Esp );
 	PULONG Frame = 0;
 	__asm__("mov %%ebp, %%ebx" : "=b" (Frame) : );
-	DbgPrint ( "NtContinue(): Ebp=%x, prev/TF=%x/%x\n", Frame, Frame[0], TrapFrame );
+	DPRINT( "NtContinue(): Ebp=%x, prev/TF=%x/%x\n", Frame, Frame[0], TrapFrame );
 	KeRosDumpStackFrames(NULL,5);
 
 	if ( Context == NULL )

reactos/subsys/win32k/objects
cursoricon.c 1.61 -> 1.62
diff -u -r1.61 -r1.62
--- cursoricon.c	4 Jul 2004 11:18:56 -0000	1.61
+++ cursoricon.c	7 Jul 2004 08:39:54 -0000	1.62
@@ -16,7 +16,7 @@
  *  along with this program; if not, write to the Free Software
  *  Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  */
-/* $Id: cursoricon.c,v 1.61 2004/07/04 11:18:56 navaraf Exp $ */
+/* $Id: cursoricon.c,v 1.62 2004/07/07 08:39:54 gvg Exp $ */
 #include <w32k.h>
 
 PCURICON_OBJECT FASTCALL
@@ -118,7 +118,7 @@
       BITMAPOBJ_UnlockBitmap(NewCursor->IconInfo.hbmMask);
       if (maskBpp != 1)
       {
-         DbgPrint("SetCursor: The Mask bitmap must have 1BPP!\n");
+         DPRINT1("SetCursor: The Mask bitmap must have 1BPP!\n");
          BITMAPOBJ_UnlockBitmap(SurfObj->hsurf);
          return Ret;
       }
@@ -131,7 +131,7 @@
         /* FIXME - Create a color pointer, only 32bit bitmap, set alpha bits!
                    Do not pass a mask bitmap to DrvSetPointerShape()!
                    Create a XLATEOBJ that describes the colors of the bitmap. */
-        DbgPrint("SetCursor: (Colored) alpha cursors are not supported!\n");
+        DPRINT1("SetCursor: (Colored) alpha cursors are not supported!\n");
       }
       else
       {
@@ -142,7 +142,7 @@
                      Do not pass a mask bitmap to DrvSetPointerShape()!
                      Create a XLATEOBJ that describes the colors of the bitmap.
                      (16bit bitmaps are propably allowed) */
-          DbgPrint("SetCursor: Cursors with colors are not supported!\n");
+          DPRINT1("SetCursor: Cursors with colors are not supported!\n");
         }
         else
         {
@@ -232,7 +232,7 @@
     }
     
     if(GDIDEV(SurfObj)->PointerStatus == SPS_ERROR)
-      DbgPrint("SetCursor: DrvSetPointerShape() returned SPS_ERROR\n");
+      DPRINT1("SetCursor: DrvSetPointerShape() returned SPS_ERROR\n");
   
   return Ret;
 }
@@ -1124,7 +1124,7 @@
     IntReleaseCurIconObject(CurIconObject);
     
     if(istepIfAniCur)
-      DbgPrint("NtUserDrawIconEx: istepIfAniCur is not supported!\n");
+      DPRINT1("NtUserDrawIconEx: istepIfAniCur is not supported!\n");
     
     if(!hbmMask || !IntGdiGetObject(hbmMask, sizeof(BITMAP), &bmpMask))
       goto done;

reactos/drivers/net/ndis/ndis
main.c 1.13 -> 1.14
diff -u -r1.13 -r1.14
--- main.c	2 Mar 2004 18:18:14 -0000	1.13
+++ main.c	7 Jul 2004 08:39:54 -0000	1.14
@@ -18,7 +18,7 @@
 #ifdef DBG
 
 /* See debug.h for debug/trace constants */
-DWORD DebugTraceLevel = MIN_TRACE;
+DWORD DebugTraceLevel = 0;
 
 #endif /* DBG */
 

reactos/drivers/net/tcpip/tcpip
main.c 1.24 -> 1.25
diff -u -r1.24 -r1.25
--- main.c	9 Jun 2004 18:11:38 -0000	1.24
+++ main.c	7 Jul 2004 08:39:54 -0000	1.25
@@ -25,7 +25,7 @@
 #ifndef NDEBUG
 DWORD DebugTraceLevel = 0x7fffffff;
 #else
-DWORD DebugTraceLevel = MIN_TRACE;
+DWORD DebugTraceLevel = 0;
 #endif /* NDEBUG */
 
 PDEVICE_OBJECT TCPDeviceObject   = NULL;
CVSspam 0.2.8