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 | 35c7a45a9b20d713e6c65c7f5ce681ff4acdb2b9 (patch) | |
tree | 26ed87f1e8637e56f8d06561fb11f036f92250d9 /cppuhelper | |
parent | 35c46ba74bf2eefc5fc50587ef8c637369efdd2b (diff) |
WaE: format not a string literal and no format arguments
Diffstat (limited to 'cppuhelper')
-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 079eeae13..29412bf9a 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 () { |