diff options
author | Tor Lillqvist <tml@iki.fi> | 2011-08-08 14:12:33 +0300 |
---|---|---|
committer | Tor Lillqvist <tml@iki.fi> | 2011-08-08 14:13:48 +0300 |
commit | 7702cc5a7aea3d20138cba0cde86ef8a952619f0 (patch) | |
tree | 0e1ec7ee55a377be2bb720efc100f2c8ea0dfeeb /cppuhelper/source | |
parent | cc13807356e73d0ac51f37b8e27f43d86602221d (diff) |
OSL_TRACE adds trailing newline itself
Diffstat (limited to 'cppuhelper/source')
-rw-r--r-- | cppuhelper/source/shlib.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cppuhelper/source/shlib.cxx b/cppuhelper/source/shlib.cxx index daea3645a433..9f6ff0c1c78a 100644 --- a/cppuhelper/source/shlib.cxx +++ b/cppuhelper/source/shlib.cxx @@ -263,7 +263,7 @@ static OUString makeComponentPath( OUString out( buf.makeStringAndClear() ); #if OSL_DEBUG_LEVEL > 1 OString str( OUStringToOString( out, RTL_TEXTENCODING_ASCII_US ) ); - OSL_TRACE( "component path=%s\n", str.getStr() ); + OSL_TRACE( "component path=%s", str.getStr() ); #endif return out; |