summaryrefslogtreecommitdiffstats
path: root/desktop/unx
diff options
context:
space:
mode:
authorMatúš Kukan <matus.kukan@gmail.com>2011-12-15 14:03:01 +0100
committerMatúš Kukan <matus.kukan@gmail.com>2011-12-16 21:20:08 +0100
commitf958657cc5a179a2bccff06f88cd36f80b779184 (patch)
treee5d9eda71d9a2add0c1576ca36a1d5d2b778446a /desktop/unx
parentWaE Mac unitialized value false positive (diff)
downloadcore-f958657cc5a179a2bccff06f88cd36f80b779184.tar.gz
core-f958657cc5a179a2bccff06f88cd36f80b779184.zip
gcc-trunk: fix error: unable to find string literal operator 'operator"" FOO'
Diffstat (limited to 'desktop/unx')
-rw-r--r--desktop/unx/splash/unxsplash.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/unx/splash/unxsplash.cxx b/desktop/unx/splash/unxsplash.cxx
index c2beeffc6891..bda01857a2e6 100644
--- a/desktop/unx/splash/unxsplash.cxx
+++ b/desktop/unx/splash/unxsplash.cxx
@@ -108,7 +108,7 @@ void SAL_CALL UnxSplashScreen::setValue( sal_Int32 nValue )
{
if ( m_pOutFd )
{
- fprintf( m_pOutFd, "%"SAL_PRIdINT32"%%\n", nValue );
+ fprintf( m_pOutFd, "%" SAL_PRIdINT32 "%%\n", nValue );
fflush( m_pOutFd );
}
}