diff options
author | Caolán McNamara <caolanm@redhat.com> | 2011-01-11 20:21:14 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2011-01-11 20:21:14 +0000 |
commit | dea8866d86460abc082f8aa9a56148168a583777 (patch) | |
tree | b439f33e588d964ff9add5b784388dddebf742c7 /desktop | |
parent | 29d8d1f32dd98ac87a0cfefbca48c9efaf62c4d2 (diff) |
WaE: sal_Int32 is a %SAL_PRIdINT32 when printfed
Diffstat (limited to 'desktop')
-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 ); } } |