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

Noel Grandin noel at peralex.com
Tue May 10 06:39:20 UTC 2016


 sdext/source/pdfimport/filterdet.cxx |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

New commits:
commit 00bfc137d3a62a252f158c4a9100dd1379f410fd
Author: Noel Grandin <noel at peralex.com>
Date:   Tue May 10 08:38:46 2016 +0200

    fix Windows build
    
    Change-Id: Ib80cc10c259e26e997e3a548fbf267621c050e29

diff --git a/sdext/source/pdfimport/filterdet.cxx b/sdext/source/pdfimport/filterdet.cxx
index 6a84557..8889679 100644
--- a/sdext/source/pdfimport/filterdet.cxx
+++ b/sdext/source/pdfimport/filterdet.cxx
@@ -470,12 +470,14 @@ bool checkDocChecksum( const OUString& rInPDFFileURL,
     bRet = (0 == memcmp( nActualChecksum, nTestChecksum, sizeof( nActualChecksum ) ));
 #if OSL_DEBUG_LEVEL > 0
     OSL_TRACE( "test checksum: " );
-    for(sal_uInt8 i : nTestChecksum)
+    for(sal_uInt8 i : nTestChecksum) {
         OSL_TRACE( "%.2X", int(i) );
+    }
     OSL_TRACE( "\n" );
     OSL_TRACE( "file checksum: " );
-    for(sal_uInt8 i : nActualChecksum)
+    for(sal_uInt8 i : nActualChecksum) {
         OSL_TRACE( "%.2X", int(i) );
+    }
     OSL_TRACE( "\n" );
 #endif
     return bRet;


More information about the Libreoffice-commits mailing list