diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-03-12 12:45:06 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-03-13 16:50:43 +0100 |
commit | b5b65a8c729542455591cc327fa763d2ab666ffc (patch) | |
tree | 98c264b1f2a2f581e4dfaae1cd5a7d716c8dce7a /shell/source | |
parent | 2805bb8f967eaa6ec9bcae717251408cd78ae3c0 (diff) |
OSL_TRACE: Use format string
Diffstat (limited to 'shell/source')
-rw-r--r-- | shell/source/cmdmail/cmdmailsuppl.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/shell/source/cmdmail/cmdmailsuppl.cxx b/shell/source/cmdmail/cmdmailsuppl.cxx index 6deaba3e1c..31712a65b0 100644 --- a/shell/source/cmdmail/cmdmailsuppl.cxx +++ b/shell/source/cmdmail/cmdmailsuppl.cxx @@ -220,7 +220,7 @@ void SAL_CALL CmdMailSuppl::sendSimpleMailMessage( const Reference< XSimpleMailM { m_xConfigurationProvider.clear(); OSL_TRACE( "RuntimeException caught accessing configuration provider." ); - OSL_TRACE( OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).getStr() ); + OSL_TRACE( "%s", OUStringToOString( e.Message, RTL_TEXTENCODING_ASCII_US ).getStr() ); throw e; } |