[Libreoffice-commits] core.git: l10ntools/source

Douglas Mencken dougmencken at gmail.com
Fri Sep 19 02:49:59 PDT 2014


 l10ntools/source/export.cxx |   15 ++++++++-------
 1 file changed, 8 insertions(+), 7 deletions(-)

New commits:
commit 43ed0dbb596399a134c34a5d906c5debb349f640
Author: Douglas Mencken <dougmencken at gmail.com>
Date:   Sun Sep 7 05:52:21 2014 -0400

    l10ntools/source/export.cxx: be more std::
    
    Change-Id: Ia5f96f7d2bf366a6156d198e73e7987a471f28da
    Signed-off-by: Stephan Bergmann <sbergman at redhat.com>

diff --git a/l10ntools/source/export.cxx b/l10ntools/source/export.cxx
index 6052e24..38cd3ed 100644
--- a/l10ntools/source/export.cxx
+++ b/l10ntools/source/export.cxx
@@ -26,8 +26,8 @@
 #include "srclex.hxx"
 
 #include "boost/scoped_ptr.hpp"
-#include <stdio.h>
-#include <stdlib.h>
+#include <cstdio>
+#include <cstdlib>
 #include "common.hxx"
 #include "export.hxx"
 #include "tokens.h"
@@ -207,9 +207,10 @@ Export::Export(const OString &rOutput)
                 pParseQueue( new ParserQueue( *this ) )
 {
     aOutput.mPo = new PoOfstream( rOutput, PoOfstream::APP );
-    if (!aOutput.mPo->isOpen()) {
-        fprintf(stderr, "ERROR : Can't open file %s\n", rOutput.getStr());
-        exit ( -1 );
+    if (!aOutput.mPo->isOpen())
+    {
+        std::fprintf(stderr, "ERROR : Can't open file %s\n", rOutput.getStr());
+        std::exit(EXIT_FAILURE);
     }
 }
 
@@ -652,8 +653,8 @@ int Export::Execute( int nToken, const char * pToken )
         }
         break;
         case PRAGMA : {
-            fprintf(stderr, "ERROR: archaic PRAGMA %s\n", sToken.getStr());
-            exit(-1);
+            std::fprintf(stderr, "ERROR: archaic PRAGMA %s\n", sToken.getStr());
+            std::exit(EXIT_FAILURE);
         }
         break;
         }


More information about the Libreoffice-commits mailing list