From cfdaa3b11d3c636f07cbc86425b2ca791adb9c63 Mon Sep 17 00:00:00 2001 From: Filip Navara Date: Mon, 21 Nov 2005 21:22:13 +0000 Subject: [PATCH] Be consistent and change #if DBG to #ifdef DBG. svn path=/trunk/; revision=19426 --- reactos/lib/rtl/handle.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/reactos/lib/rtl/handle.c b/reactos/lib/rtl/handle.c index c0c2b799dc9..187d75eab6e 100644 --- a/reactos/lib/rtl/handle.c +++ b/reactos/lib/rtl/handle.c @@ -125,7 +125,7 @@ BOOLEAN NTAPI RtlFreeHandle(PRTL_HANDLE_TABLE HandleTable, PRTL_HANDLE_TABLE_ENTRY Handle) { -#if DBG +#ifdef DBG /* check if handle is valid */ if (RtlIsValidHandle(HandleTable, Handle)) return FALSE;