From 0cff98313cb5585bb27b7a9b39015826e7b8ca46 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Wed, 4 Aug 2004 00:17:49 +0000 Subject: [PATCH] - Disable debug messages of floppy driver. svn path=/trunk/; revision=10381 --- reactos/drivers/storage/floppy/floppy.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/reactos/drivers/storage/floppy/floppy.h b/reactos/drivers/storage/floppy/floppy.h index 56967695c14..3aa78118599 100644 --- a/reactos/drivers/storage/floppy/floppy.h +++ b/reactos/drivers/storage/floppy/floppy.h @@ -40,7 +40,11 @@ int _cdecl swprintf(const WCHAR *, ...); /* missing from ros headers */ /* TODO: fix this right */ #ifndef KdPrint +#if 0 #define KdPrint(x) DbgPrint x +#else +#define KdPrint(x) +#endif #endif #ifndef ASSERT