From acdf579f07c9b879bba7cf663dd92ff90e019eb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Sat, 27 Oct 2007 16:38:14 +0000 Subject: [PATCH] Silent debug message svn path=/trunk/; revision=29917 --- reactos/lib/rtl/crc32.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/reactos/lib/rtl/crc32.c b/reactos/lib/rtl/crc32.c index 2874062247e..d1509569871 100644 --- a/reactos/lib/rtl/crc32.c +++ b/reactos/lib/rtl/crc32.c @@ -91,9 +91,7 @@ RtlComputeCrc32 (IN USHORT Initial, { ULONG CrcValue; -#ifdef DBG - DbgPrint("(%lu,%p,%lu)\n", Initial, Data, Length); -#endif + DPRINT("(%lu,%p,%lu)\n", Initial, Data, Length); CrcValue = ~Initial; while (Length > 0)