From 5a7b9c7772518ba922561168befa960c18908545 Mon Sep 17 00:00:00 2001 From: short <> Date: Sat, 7 Jun 2003 07:20:52 +0000 Subject: [PATCH] captive_options module-loading generalized to be CORBA transportable --- ntoskrnl/dbg/print.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ntoskrnl/dbg/print.c b/ntoskrnl/dbg/print.c index eec9496..eba04e6 100644 --- a/ntoskrnl/dbg/print.c +++ b/ntoskrnl/dbg/print.c @@ -57,7 +57,7 @@ __asm__ ("\n\t.global _DbgService\n\t" */ #ifdef LIBCAPTIVE -extern gboolean captive_debug_messages; +extern gboolean captive_get_debug_messages(void); #endif /* LIBCAPTIVE */ ULONG @@ -68,7 +68,7 @@ DbgPrint(PCH Format, ...) va_list ap; #ifdef LIBCAPTIVE - if (!captive_debug_messages) + if (!captive_get_debug_messages()) return 0; #endif /* LIBCAPTIVE */ -- 1.8.3.1