diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-04-01 10:24:41 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-04-01 10:24:41 +0100 |
commit | 8bf964931be5ec0c0c258ef38f57c3bbb289a4a0 (patch) | |
tree | 14e875163d08f996524cd5c3741f2285064cacf0 | |
parent | 8a7a705cab73a8eba1605911a629728911895c3f (diff) |
%s, not %c
-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 29412bf9a..0f75bd837 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( "%c\n", p ); + printf( "%s\n", p ); } static inline void out( const OUString & r ) throw () { |