summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2010-10-10 04:25:31 -0500
committerNorbert Thiebaud <nthiebaud@gmail.com>2010-10-10 04:25:31 -0500
commitd02017d4d3cb23b37bb11075976f104b7dfd88b4 (patch)
treebc1fa513a566aec0ffa4536b738af8c292cc9381 /vcl
parentb71ba8c3f15138b9253c71e9ebf34f474d4b42f4 (diff)
squash misc warnings
Diffstat (limited to 'vcl')
-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 67d2796c8674..fe008e116193 100644
--- a/vcl/unx/source/plugadapt/salplug.cxx
+++ b/vcl/unx/source/plugadapt/salplug.cxx
@@ -282,7 +282,7 @@ void SalAbort( const XubString& rErrorText )
if( !rErrorText.Len() )
std::fprintf( stderr, "Application Error" );
else
- std::fprintf( stderr, ByteString( rErrorText, gsl_getSystemTextEncoding() ).GetBuffer() );
+ std::fprintf( stderr, "%s", ByteString( rErrorText, gsl_getSystemTextEncoding() ).GetBuffer() );
abort();
}