From a2aa8e4a7f9bd902f025af2cad6ae93c2923daf6 Mon Sep 17 00:00:00 2001 From: shatty Date: Mon, 22 Nov 2004 06:40:03 +0000 Subject: [PATCH] changed T_ATOMIZER_MODULE_NAME to B_ATOMIZER_MODULE_NAME for compiling under DEBUG git-svn-id: file:///srv/svn/repos/haiku/trunk/current@10161 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- src/add-ons/kernel/generic/atomizer/atomizer.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/add-ons/kernel/generic/atomizer/atomizer.c b/src/add-ons/kernel/generic/atomizer/atomizer.c index 4db4cdf24e..1d74050be7 100644 --- a/src/add-ons/kernel/generic/atomizer/atomizer.c +++ b/src/add-ons/kernel/generic/atomizer/atomizer.c @@ -178,7 +178,7 @@ exit0: static status_t init() { - ddprintf((T_ATOMIZER_MODULE_NAME": init()\n")); + ddprintf((B_ATOMIZER_MODULE_NAME": init()\n")); /* init the module-wide benaphore */ INIT_BEN(module_lock); if (module_lock.sem >= 0) { @@ -200,10 +200,10 @@ uninit() /* aquire the module-wide lock. This is pure paranoia. If it fails, all hell as broken loose, but we won't contribute by corrupting the heap. */ - ddprintf((T_ATOMIZER_MODULE_NAME": uninit()\n")); + ddprintf((B_ATOMIZER_MODULE_NAME": uninit()\n")); ACQUIRE_BEN_ON_ERROR(module_lock, return B_ERROR); if (atomizer_list->next) { - ddprintf((T_ATOMIZER_MODULE_NAME": uninit called with non-system atomizers still active!\n")); + ddprintf((B_ATOMIZER_MODULE_NAME": uninit called with non-system atomizers still active!\n")); } /* delete all of the atomizers. Ideally, there should only be the system atomizer left */