From 98bc8544de673018e4d4cf874325d8ab7edd45de Mon Sep 17 00:00:00 2001 From: Magnus Olsen Date: Thu, 26 May 2005 15:53:24 +0000 Subject: [PATCH] change line 15 from #if DBG to #ifdef DBG so head builds agein svn path=/trunk/; revision=15524 --- reactos/include/wine/debug.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/include/wine/debug.h b/reactos/include/wine/debug.h index 0d562c67be9..51f24ab834f 100644 --- a/reactos/include/wine/debug.h +++ b/reactos/include/wine/debug.h @@ -12,7 +12,7 @@ unsigned long DbgPrint(char *Format,...); -#if DBG +#ifdef DBG #define DPRINT1 DbgPrint("(%s:%d:%s) ",__FILE__,__LINE__,__FUNCTION__), DbgPrint #else #define DPRINT1(args...)