summaryrefslogtreecommitdiff
path: root/extensions/source
diff options
context:
space:
mode:
authorThomas Arnhold <thomas@arnhold.org>2011-02-07 17:31:00 +0100
committerThomas Arnhold <thomas@arnhold.org>2011-02-07 17:33:10 +0100
commitb4286deec9bb63d2c36ca174ac6a9f2d37ee14a5 (patch)
tree72abb03cd0de8b71877fa25da750f5450d16a8bf /extensions/source
parentba11d549dca2a04a220b59aaf9223ee8f7043da0 (diff)
WaE: format not a string literal and no format arguments
Diffstat (limited to 'extensions/source')
-rw-r--r--extensions/source/logging/consolehandler.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/extensions/source/logging/consolehandler.cxx b/extensions/source/logging/consolehandler.cxx
index c095198900ef..6f0a6b4969da 100644
--- a/extensions/source/logging/consolehandler.cxx
+++ b/extensions/source/logging/consolehandler.cxx
@@ -250,9 +250,9 @@ namespace logging
return sal_False;
if ( _rRecord.Level >= m_nThreshold )
- fprintf( stderr, sEntry.getStr() );
+ fprintf( stderr, "%s\n", sEntry.getStr() );
else
- fprintf( stdout, sEntry.getStr() );
+ fprintf( stdout, "%s\n", sEntry.getStr() );
return sal_True;
}