diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2012-01-24 10:19:42 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2012-01-24 10:21:13 +0100 |
commit | 04b8bac4a9e8e251ca61c4373beb0f1df76b2d54 (patch) | |
tree | 4afb026cd621541c8c7aa17a2410bedba338a09a /extensions | |
parent | 6b58e58dc71f5371829e54fdddd5ca1b69c80aff (diff) |
finalize gcc 4.7 string literal operators
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/plugin/base/nfuncs.cxx | 6 | ||||
-rw-r--r-- | extensions/source/plugin/base/xplugin.cxx | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/extensions/source/plugin/base/nfuncs.cxx b/extensions/source/plugin/base/nfuncs.cxx index 69b73f52df0d..b06665b1175d 100644 --- a/extensions/source/plugin/base/nfuncs.cxx +++ b/extensions/source/plugin/base/nfuncs.cxx @@ -56,7 +56,7 @@ void TRACE( char const * s ) if (s_file) { oslThreadIdentifier t = osl_getThreadIdentifier(0); - fprintf( s_file, "log [t_id=%"SAL_PRIuUINT32"]: %s\n", t, s ); + fprintf( s_file, "log [t_id=%" SAL_PRIuUINT32 "]: %s\n", t, s ); fflush( s_file ); } } @@ -67,7 +67,7 @@ void TRACEN( char const * s, long n ) if (s_file) { oslThreadIdentifier t = osl_getThreadIdentifier(0); - fprintf( s_file, "log [t_id=%"SAL_PRIuUINT32"]: %s%ld\n", t, s, n ); + fprintf( s_file, "log [t_id=%" SAL_PRIuUINT32 "]: %s%ld\n", t, s, n ); fflush( s_file ); } } @@ -78,7 +78,7 @@ void TRACES( char const* s, char const* s2 ) if (s_file) { oslThreadIdentifier t = osl_getThreadIdentifier(0); - fprintf( s_file, "log [t_id=%"SAL_PRIuUINT32"]: %s %s\n", t, s, s2 ); + fprintf( s_file, "log [t_id=%" SAL_PRIuUINT32 "]: %s %s\n", t, s, s2 ); fflush( s_file ); } } diff --git a/extensions/source/plugin/base/xplugin.cxx b/extensions/source/plugin/base/xplugin.cxx index 0a9618d79d92..263cb4e3591a 100644 --- a/extensions/source/plugin/base/xplugin.cxx +++ b/extensions/source/plugin/base/xplugin.cxx @@ -751,7 +751,7 @@ sal_Bool XPlugin_Impl::provideNewStream(const OUString& mimetype, fprintf( stderr, "new stream \"%s\" of MIMEType \"%s\"\n" "for plugin \"%s\"\n" - "seekable = %s, length = %"SAL_PRIdINT32"\n", + "seekable = %s, length = %" SAL_PRIdINT32 "\n", aURL.getStr(), aMIME.getStr(), getPluginComm()->getLibName().getStr(), isfile ? "true" : "false", length ); @@ -862,7 +862,7 @@ void XPlugin_Impl::setPosSize( sal_Int32 nX_, sal_Int32 nY_, sal_Int32 nWidth_, Guard< Mutex > aGuard( m_aMutex ); #if OSL_DEBUG_LEVEL > 1 - fprintf( stderr, "XPlugin_Impl::setPosSize( %"SAL_PRIdINT32", %"SAL_PRIdINT32", %"SAL_PRIdINT32", %"SAL_PRIdINT32", %d )\n", + fprintf( stderr, "XPlugin_Impl::setPosSize( %" SAL_PRIdINT32 ", %" SAL_PRIdINT32 ", %" SAL_PRIdINT32 ", %" SAL_PRIdINT32 ", %d )\n", nX_, nY_, nWidth_, nHeight_, nFlags ); #endif |