summaryrefslogtreecommitdiff
path: root/vcl/unx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2010-11-03 10:16:06 +0000
committerCaolán McNamara <caolanm@redhat.com>2010-11-03 10:16:06 +0000
commit698ee4170303e86b7ff67d0eee14cc0720bef06f (patch)
tree4d8903f6407e29b2c1bc5bce8ee31a63038b6c45 /vcl/unx
parent5a0406aa77feb8779200a7906f55c0176ceaafd6 (diff)
abort doesn't gain us anything here.
abort doesn't gain us anything here except to force abrt automatic bugreports kick in, and XIOErrors can't be worked around
Diffstat (limited to 'vcl/unx')
-rw-r--r--vcl/unx/source/plugadapt/salplug.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/source/plugadapt/salplug.cxx b/vcl/unx/source/plugadapt/salplug.cxx
index 0accb8def42f..7398cc8410a6 100644
--- a/vcl/unx/source/plugadapt/salplug.cxx
+++ b/vcl/unx/source/plugadapt/salplug.cxx
@@ -284,7 +284,7 @@ void SalAbort( const XubString& rErrorText )
std::fprintf( stderr, "Application Error" );
else
std::fprintf( stderr, "%s", ByteString( rErrorText, gsl_getSystemTextEncoding() ).GetBuffer() );
- abort();
+ exit(-1);
}
const OUString& SalGetDesktopEnvironment()