Kaydet (Commit) 00bfc137 authored tarafından Noel Grandin's avatar Noel Grandin

fix Windows build

Change-Id: Ib80cc10c259e26e997e3a548fbf267621c050e29
üst 990ab034
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment