Skip to content

Commit e9fdd89

Browse files
authored
Merge pull request CalebQ42#31 from willmurphyscode/main
fix: remove stray println
2 parents 03266d0 + c80d150 commit e9fdd89

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

low/reader.go

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ package squashfslow
33
import (
44
"encoding/binary"
55
"errors"
6-
"fmt"
76
"io"
87
"math"
98

@@ -136,7 +135,6 @@ func (r *Reader) fragEntry(i uint32) (fragEntry, error) {
136135
} else {
137136
blockNum = 0
138137
}
139-
fmt.Println(blockNum)
140138
blocksRead := len(r.fragTable) / 512
141139
blocksToRead := int(blockNum) - blocksRead + 1
142140

0 commit comments

Comments
 (0)