diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-03-13 17:37:15 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-03-15 16:55:52 +0100 |
commit | e65d81e645bbe6b250354b01b2ad81e139dea1e4 (patch) | |
tree | 5198bd3d96aaa18756e61a06ecbdf5894c214e77 /cppu | |
parent | aa9d8ffe3398401992b7dbdd26ef62104a440441 (diff) |
Use format string on OSL_TRACE()
Diffstat (limited to 'cppu')
-rw-r--r-- | cppu/source/uno/lbenv.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/cppu/source/uno/lbenv.cxx b/cppu/source/uno/lbenv.cxx index 66bcaf934..331662c7f 100644 --- a/cppu/source/uno/lbenv.cxx +++ b/cppu/source/uno/lbenv.cxx @@ -687,8 +687,7 @@ static void writeLine( } else { - OSL_TRACE( pLine ); - OSL_TRACE( "\n" ); + OSL_TRACE( "%s\n", pLine ); } } } |