diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2007-01-18 13:18:28 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2007-01-18 13:18:28 +0000 |
commit | ef965232c69299843d21f276742693a759fd711b (patch) | |
tree | 1da8939cca38125b0eb59d7db8ef22337aa0443c /sal/osl | |
parent | 4b63d5ed087e2e2a93f8eda15f65b060291b0efe (diff) |
INTEGRATION: CWS pj71 (1.32.12); FILE MERGED
2007/01/07 13:14:29 pjanik 1.32.12.1: #i73209#: buffer is not used at all on Mac OS X.
Diffstat (limited to 'sal/osl')
-rw-r--r-- | sal/osl/unx/signal.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sal/osl/unx/signal.c b/sal/osl/unx/signal.c index 507f5cf927ee..42d7af304512 100644 --- a/sal/osl/unx/signal.c +++ b/sal/osl/unx/signal.c @@ -4,9 +4,9 @@ * * $RCSfile: signal.c,v $ * - * $Revision: 1.32 $ + * $Revision: 1.33 $ * - * last change: $Author: rt $ $Date: 2006-12-01 14:18:16 $ + * last change: $Author: vg $ $Date: 2007-01-18 14:18:28 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -681,8 +681,8 @@ static int ReportCrash( int Signal ) static void PrintStack( int sig ) { - void *buffer[MAX_STACK_FRAMES]; #ifndef MACOSX + void *buffer[MAX_STACK_FRAMES]; int size = backtrace( buffer, sizeof(buffer) / sizeof(buffer[0]) ); #endif |