[Libreoffice-commits] .: editeng/source

Stephan Bergmann sbergmann at kemper.freedesktop.org
Mon Apr 16 06:52:58 PDT 2012


 editeng/source/editeng/editdbg.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 25de2a561b8f2618c2fa42dab39f57c727ce03e5
Author: Stephan Bergmann <sbergman at redhat.com>
Date:   Mon Apr 16 15:52:46 2012 +0200

    Corret size_t format specifier

diff --git a/editeng/source/editeng/editdbg.cxx b/editeng/source/editeng/editdbg.cxx
index 98b4e9c..79c2c14 100644
--- a/editeng/source/editeng/editdbg.cxx
+++ b/editeng/source/editeng/editdbg.cxx
@@ -461,7 +461,7 @@ void EditDbg::ShowEditEngineData( EditEngine* pEE, sal_Bool bInfoBox )
     fprintf( fp, "\nMaxAutoPaperSize: %li x %li", pEE->GetMaxAutoPaperSize().Width(), pEE->GetMaxAutoPaperSize().Height() );
     fprintf( fp, "\nMinAutoPaperSize: %li x %li", pEE->GetMinAutoPaperSize().Width(), pEE->GetMinAutoPaperSize().Height() );
     fprintf( fp, "\nUpdate: %i", pEE->GetUpdateMode() );
-    fprintf( fp, "\nNumber of Views: %" SAL_PRIuUINT64, pEE->GetViewCount() );
+    fprintf( fp, "\nNumber of Views: %" SAL_PRI_SIZET "i", pEE->GetViewCount() );
     for ( sal_uInt16 nView = 0; nView < pEE->GetViewCount(); nView++ )
     {
         EditView* pV = pEE->GetView( nView );


More information about the Libreoffice-commits mailing list