aboutsummaryrefslogtreecommitdiff
path: root/src/compress/bzip2/bzip2.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/compress/bzip2/bzip2.go')
-rw-r--r--src/compress/bzip2/bzip2.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/compress/bzip2/bzip2.go b/src/compress/bzip2/bzip2.go
index 73e201b80e..d41ff2c83b 100644
--- a/src/compress/bzip2/bzip2.go
+++ b/src/compress/bzip2/bzip2.go
@@ -27,8 +27,8 @@ type reader struct {
blockCRC uint32
wantBlockCRC uint32
setupDone bool // true if we have parsed the bzip2 header.
- blockSize int // blockSize in bytes, i.e. 900 * 1000.
eof bool
+ blockSize int // blockSize in bytes, i.e. 900 * 1000.
c [256]uint // the ``C'' array for the inverse BWT.
tt []uint32 // mirrors the ``tt'' array in the bzip2 source and contains the P array in the upper 24 bits.
tPos uint32 // Index of the next output byte in tt.