summaryrefslogtreecommitdiff
path: root/cppuhelper/source
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2011-04-01 10:24:41 +0100
committerCaolán McNamara <caolanm@redhat.com>2011-04-01 10:24:41 +0100
commitd0a4422615b5338877529501e3072aa09bea49cf (patch)
treeef21b943c8c823f4b7ab8c6011fa5abafdc21070 /cppuhelper/source
parent4574a6b9d6a5af0542306f5ef69d77d2ba8bf829 (diff)
%s, not %c
Diffstat (limited to 'cppuhelper/source')
-rw-r--r--cppuhelper/source/shlib.cxx2
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 ()
{