summaryrefslogtreecommitdiff
path: root/cppu
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-03-13 17:37:15 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-03-15 16:55:52 +0100
commit7176db7752b58cfd2fc95bd96400e675a7cab9af (patch)
treec7b3bb244e54d57771c987c8961b89186c77751f /cppu
parent4861e9171b50cd223c2736b5ef3d783a8269e025 (diff)
Use format string on OSL_TRACE()
Diffstat (limited to 'cppu')
-rw-r--r--cppu/source/uno/lbenv.cxx3
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 );
}
}
}