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 | d0a4422615b5338877529501e3072aa09bea49cf (patch) | |
tree | ef21b943c8c823f4b7ab8c6011fa5abafdc21070 | |
parent | 4574a6b9d6a5af0542306f5ef69d77d2ba8bf829 (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 8866240187d2..76f5970590b1 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 () { |