diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-02-07 17:31:48 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-02-07 17:32:51 +0100 |
commit | 5b7242c1a26a18d3c001c7fe76e2ba6e5ab6c82f (patch) | |
tree | f61312d8d1cc0bf7027427c7163fc526dc9ff7dc | |
parent | eb3b5321a8381bad1a703e0e635267a4f9d35126 (diff) |
WaE: format not a string literal and no format arguments
-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 8099ef0bc038..8866240187d2 100644 --- a/cppuhelper/source/shlib.cxx +++ b/cppuhelper/source/shlib.cxx @@ -62,7 +62,7 @@ namespace cppu //------------------------------------------------------------------------------ static inline void out( const char * p ) SAL_THROW( () ) { - printf( p ); + printf( "%c\n", p ); } static inline void out( const OUString & r ) throw () { |