diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-04-15 16:56:37 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-04-15 16:56:37 +0000 |
commit | bef8c02bf7a60762d386d79a2b882dd9798f6250 (patch) | |
tree | e23169cfd80ca88619baae0ba016db9393c3055f | |
parent | 569ab875269f451acd9c4b515f25bdb09f11c74c (diff) |
INTEGRATION: CWS dbgmacros1 (1.1.1.1.104); FILE MERGED
2003/04/10 09:22:06 kso 1.1.1.1.104.1: #108413# - debug macro unification.
-rw-r--r-- | tools/workben/solar.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/workben/solar.c b/tools/workben/solar.c index f515824ff15b..2de21a2b1eb9 100644 --- a/tools/workben/solar.c +++ b/tools/workben/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:12 $ + * last change: $Author: vg $ $Date: 2003-04-15 17:56:37 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -290,7 +290,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 ); @@ -301,7 +301,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 ); |