diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-03-12 12:51:35 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-03-12 14:19:49 +0100 |
commit | d0c187cc8cc78b661726dad8a75d20af595085f1 (patch) | |
tree | 4940c13a4f891127a4b4e426f10f25e340790ac2 /stoc/test/testintrosp.cxx | |
parent | 7f656740d865bcdf77a49a41d47aedf401a80795 (diff) |
OSL_TRACE: Use format string
Diffstat (limited to 'stoc/test/testintrosp.cxx')
-rw-r--r-- | stoc/test/testintrosp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stoc/test/testintrosp.cxx b/stoc/test/testintrosp.cxx index 9a075333fac6..000d95279983 100644 --- a/stoc/test/testintrosp.cxx +++ b/stoc/test/testintrosp.cxx @@ -1244,7 +1244,7 @@ SAL_IMPLEMENT_MAIN() OSL_ENSURE( sal_False, "### exception occurred!" ); OString aMsg( OUStringToOString( rExc.Message, RTL_TEXTENCODING_ASCII_US ) ); OSL_TRACE( "### exception occurred: " ); - OSL_TRACE( aMsg.getStr() ); + OSL_TRACE( "%s", aMsg.getStr() ); OSL_TRACE( "\n" ); } |