diff options
-rw-r--r-- | desktop/unx/splash/unxsplash.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/desktop/unx/splash/unxsplash.cxx b/desktop/unx/splash/unxsplash.cxx index 518dad345729..f51e22a7c13a 100644 --- a/desktop/unx/splash/unxsplash.cxx +++ b/desktop/unx/splash/unxsplash.cxx @@ -103,7 +103,7 @@ void SAL_CALL UnxSplashScreen::setValue( sal_Int32 nValue ) { if ( m_pOutFd ) { - fprintf( m_pOutFd, "%ld%%\n", nValue ); + fprintf( m_pOutFd, "%"SAL_PRIdINT32"%%\n", nValue ); fflush( m_pOutFd ); } } |