svx/source/gengal/gengal.cxx |    6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

New commits:
commit fc9a9166d59a0e7dd89145b7b9937ccf4a21a2b7
Author: Michael Stahl <mst...@redhat.com>
Date:   Mon Apr 8 12:01:44 2013 +0200

    gengal: -Werror=format
    
    Change-Id: If7076d639e0b364a307fc4986fa36a53b2edf881

diff --git a/svx/source/gengal/gengal.cxx b/svx/source/gengal/gengal.cxx
index 5bbfeab..cbb2fc2 100644
--- a/svx/source/gengal/gengal.cxx
+++ b/svx/source/gengal/gengal.cxx
@@ -72,7 +72,7 @@ static void createTheme( OUString aThemeName, OUString 
aGalleryURL,
     fprintf( stderr, "Work on gallery '%s'\n",
              OUStringToOString( aGalleryURL, RTL_TEXTENCODING_UTF8 ).getStr() 
);
 
-    fprintf( stderr, "Existing themes: %d\n",
+    fprintf( stderr, "Existing themes: %" SAL_PRI_SIZET "u\n",
              pGallery->GetThemeCount() );
 
     GalleryTheme *pGalTheme;
@@ -83,7 +83,7 @@ static void createTheme( OUString aThemeName, OUString 
aGalleryURL,
             }
     }
 
-    fprintf( stderr, "Existing themes: %d\n",
+    fprintf( stderr, "Existing themes: %" SAL_PRI_SIZET "u\n",
              pGallery->GetThemeCount() );
 
     SfxListener aListener;
@@ -111,7 +111,7 @@ static void createTheme( OUString aThemeName, OUString 
aGalleryURL,
             fprintf( stderr, "Failed to import '%s'\n",
                      OUStringToOString( *aIter, RTL_TEXTENCODING_UTF8 
).getStr() );
         else
-            fprintf( stderr, "Imported file '%s' (%d)\n",
+            fprintf( stderr, "Imported file '%s' (%" SAL_PRI_SIZET "u)\n",
                      OUStringToOString( *aIter, RTL_TEXTENCODING_UTF8 
).getStr(),
                      pGalTheme->GetObjectCount() );
     }
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to