[ooo-build-commit] .: svtools/bmpmaker

Cédric Bosdonnat cbosdo at kemper.freedesktop.org
Mon Oct 4 02:00:21 PDT 2010


 svtools/bmpmaker/bmp.cxx    |    2 +-
 svtools/bmpmaker/bmpsum.cxx |    2 +-
 svtools/bmpmaker/g2g.cxx    |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

New commits:
commit c8214003c239fad93d4a79696958223768421cdb
Author: Norbert Thiebaud <nthiebaud at gmail.com>
Date:   Mon Oct 4 10:55:45 2010 +0200

    printf without format considered harmful
    
     svtools/bmpmaker/bmp.cxx    |    2 +-
     svtools/bmpmaker/bmpsum.cxx |    2 +-
     svtools/bmpmaker/g2g.cxx    |    2 +-
     3 files changed, 3 insertions(+), 3 deletions(-)
    
     basic/source/app/msgedit.cxx |    2 +-
     1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/svtools/bmpmaker/bmp.cxx b/svtools/bmpmaker/bmp.cxx
index b5de769..78c8c94 100644
--- a/svtools/bmpmaker/bmp.cxx
+++ b/svtools/bmpmaker/bmp.cxx
@@ -161,7 +161,7 @@ void BmpApp::Message( const String& rText, BYTE cExit )
 
     ByteString aText( rText, RTL_TEXTENCODING_UTF8 );
     aText.Append( "\r\n" );
-    fprintf( stderr, aText.GetBuffer() );
+    fprintf( stderr, "%s", aText.GetBuffer() );
 }
 
 // -----------------------------------------------------------------------------
diff --git a/svtools/bmpmaker/bmpsum.cxx b/svtools/bmpmaker/bmpsum.cxx
index 574f7f6..3a5eef6 100644
--- a/svtools/bmpmaker/bmpsum.cxx
+++ b/svtools/bmpmaker/bmpsum.cxx
@@ -167,7 +167,7 @@ void BmpSum::Message( const String& rText, BYTE nExitCode )
 
     ByteString aText( rText, RTL_TEXTENCODING_UTF8 );
     aText.Append( "\r\n" );
-    fprintf( stderr, aText.GetBuffer() );
+    fprintf( stderr, "%s", aText.GetBuffer() );
 }
 
 // -----------------------------------------------------------------------------
diff --git a/svtools/bmpmaker/g2g.cxx b/svtools/bmpmaker/g2g.cxx
index dbdb9ac..7dc52d8 100644
--- a/svtools/bmpmaker/g2g.cxx
+++ b/svtools/bmpmaker/g2g.cxx
@@ -125,7 +125,7 @@ void G2GApp::Message( const String& rText, BYTE nExitCode )
 
     ByteString aText( rText, RTL_TEXTENCODING_UTF8 );
     aText.Append( "\r\n" );
-    fprintf( stderr, aText.GetBuffer() );
+    fprintf( stderr, "%s", aText.GetBuffer() );
 }
 
 // -----------------------------------------------------------------------------


More information about the ooo-build-commit mailing list