Changeset 7172 for trunk/src/core/org
- Timestamp:
- Jun 9, 2016, 10:53:15 AM (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/core/org/anarres/parallelgzip/ParallelGZIPOutputStream.java
r7171 r7172 95 95 private Block block = new Block(/* 0 */); 96 96 /** Used as a sentinel for 'closed'. */ 97 private intbytesWritten = 0;97 private long bytesWritten = 0; 98 98 99 99 // Master thread only … … 249 249 // LOG.info("CRC is " + crc.getValue()); 250 250 buf.putInt((int) crc.getValue()); 251 buf.putInt( bytesWritten);251 buf.putInt((int)bytesWritten); 252 252 out.write(buf.array()); // allocate() guarantees a backing array. 253 253 // LOG.info("trailer is " + Arrays.toString(buf.array()));
Note: See TracChangeset
for help on using the changeset viewer.