diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2003-04-15 16:43:11 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2003-04-15 16:43:11 +0000 |
commit | 2b33c792ed0e4d3390ec22ec450d8f9b22cc2d6d (patch) | |
tree | 47a6ec3d567b8ce0cc7aa086a86c89f96dbf7e11 | |
parent | 80b83d66a2b01b8b9854ebf679ebb0e4cf86b7f2 (diff) |
INTEGRATION: CWS dbgmacros1 (1.14.80); FILE MERGED
2003/04/09 12:08:25 kso 1.14.80.1: #108413# - debug macro unification.
-rw-r--r-- | sal/osl/unx/pipe.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sal/osl/unx/pipe.c b/sal/osl/unx/pipe.c index 350eb85fa0b7..484973eda221 100644 --- a/sal/osl/unx/pipe.c +++ b/sal/osl/unx/pipe.c @@ -2,9 +2,9 @@ * * $RCSfile: pipe.c,v $ * - * $Revision: 1.14 $ + * $Revision: 1.15 $ * - * last change: $Author: hro $ $Date: 2002-07-11 14:01:39 $ + * last change: $Author: vg $ $Date: 2003-04-15 17:43:11 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -399,12 +399,12 @@ void SAL_CALL osl_closePipe( oslPipe pPipe ) len = sizeof(addr); nRet = connect( fd, (struct sockaddr *)&addr, len); -#if defined(DEBUG) +#if OSL_DEBUG_LEVEL > 1 if ( nRet < 0 ) { perror("connect in osl_destroyPipe"); } -#endif /* DEBUG */ +#endif /* OSL_DEBUG_LEVEL */ close(fd); } #endif /* LINUX */ |