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

New commits:
commit 00bfc137d3a62a252f158c4a9100dd1379f410fd
Author: Noel Grandin <n...@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;
_______________________________________________
Libreoffice-commits mailing list
libreoffice-comm...@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to