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 | 7176db7752b58cfd2fc95bd96400e675a7cab9af (patch) | |
tree | c7b3bb244e54d57771c987c8961b89186c77751f /cppu | |
parent | 4861e9171b50cd223c2736b5ef3d783a8269e025 (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 a47cc0dfcace..71cda7fe7e40 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 ); } } } |