summaryrefslogtreecommitdiff
path: root/tools/source
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2003-04-15 16:55:43 +0000
committerVladimir Glazounov <vg@openoffice.org>2003-04-15 16:55:43 +0000
commit2288a793ea1c620449fd1d055d0e5f2ab3c60d43 (patch)
tree531c735124e8dfe30de3b59bc58ae86e5d7c555f /tools/source
parentb0340a76c31fb58131305dbca397884a4e5b8090 (diff)
INTEGRATION: CWS dbgmacros1 (1.1.1.1.104); FILE MERGED
2003/04/10 09:22:03 kso 1.1.1.1.104.1: #108413# - debug macro unification.
Diffstat (limited to 'tools/source')
-rw-r--r--tools/source/solar/solar.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/source/solar/solar.c b/tools/source/solar/solar.c
index a119ce84304d..651762de4313 100644
--- a/tools/source/solar/solar.c
+++ b/tools/source/solar/solar.c
@@ -2,9 +2,9 @@
*
* $RCSfile: solar.c,v $
*
- * $Revision: 1.1.1.1 $
+ * $Revision: 1.2 $
*
- * last change: $Author: hr $ $Date: 2000-09-18 17:03:09 $
+ * last change: $Author: vg $ $Date: 2003-04-15 17:55:43 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -363,7 +363,7 @@ int CheckGetAccess( Type eT, void* p )
{
int b;
b = -1 != check( (TestFunc)GetAtAddress, eT, p );
-#ifdef DEBUG
+#if OSL_DEBUG_LEVEL > 1
fprintf( stderr,
"%s read %s at %p\n",
(b? "can" : "can not" ), TypeName(eT), p );
@@ -374,7 +374,7 @@ int CheckSetAccess( Type eT, void* p )
{
int b;
b = -1 != check( (TestFunc)SetAtAddress, eT, p );
-#ifdef DEBUG
+#if OSL_DEBUG_LEVEL > 1
fprintf( stderr,
"%s write %s at %p\n",
(b? "can" : "can not" ), TypeName(eT), p );