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)