diff options
author | Noel Grandin <noel@peralex.com> | 2016-05-10 08:38:46 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-05-10 08:38:46 +0200 |
commit | 00bfc137d3a62a252f158c4a9100dd1379f410fd (patch) | |
tree | f4e04c3b6651d00e3d81e1379f43032cfcb266de /sdext/source | |
parent | 990ab0342a7b0c66a4bf9bac75d5c881f0f7266b (diff) |
fix Windows build
Change-Id: Ib80cc10c259e26e997e3a548fbf267621c050e29
Diffstat (limited to 'sdext/source')
-rw-r--r-- | sdext/source/pdfimport/filterdet.cxx | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sdext/source/pdfimport/filterdet.cxx b/sdext/source/pdfimport/filterdet.cxx index 6a845573e3bf..8889679f9d12 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; |