summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2004-02-03 12:23:08 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2004-02-03 12:23:08 +0000
commite5e804c994d444b46f1e5b8093c0edc8aa455db2 (patch)
tree27283601a45339010d7cb6d463882b8411c86977
parent10508f7db8297a20b9291b96d9aae1858852de3f (diff)
INTEGRATION: CWS sal05 (1.17.32); FILE MERGED
2004/01/24 13:18:20 tra 1.17.32.3: RESYNC: (1.18-1.19); FILE MERGED 2004/01/05 11:11:02 tra 1.17.32.2: RESYNC: (1.17-1.18); FILE MERGED 2003/11/03 13:41:22 tra 1.17.32.1: #112918#removed most warnings generated when compiling with -wall
-rw-r--r--sal/osl/unx/signal.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/sal/osl/unx/signal.c b/sal/osl/unx/signal.c
index 93fd5f57f771..43e242820471 100644
--- a/sal/osl/unx/signal.c
+++ b/sal/osl/unx/signal.c
@@ -2,9 +2,9 @@
*
* $RCSfile: signal.c,v $
*
- * $Revision: 1.19 $
+ * $Revision: 1.20 $
*
- * last change: $Author: rt $ $Date: 2004-01-07 16:25:58 $
+ * last change: $Author: hr $ $Date: 2004-02-03 13:23:08 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -386,7 +386,7 @@ static int ReportCrash( int Signal )
if ( !bCrashReporterExecuted )
{
int i;
- struct sigaction act;
+ /* struct sigaction act; */
for (i = 0; i < NoSignals; i++)
{
@@ -446,11 +446,11 @@ static int ReportCrash( int Signal )
char buffer[MAX_PATH_LEN];
fprintf( stackout, "0x%x:",
- stackframes[iFrame] );
+ (unsigned int)stackframes[iFrame] );
fprintf( xmlout, "<errormail:StackInfo pos=\"%d\" ip=\"0x%x\"",
iFrame,
- stackframes[iFrame]
+ (unsigned int)stackframes[iFrame]
);
memset( &dl_info, 0, sizeof(dl_info) );