Compare commits

...

2 Commits

Author SHA1 Message Date
Caleb Gardner e9fdd89c67 Merge pull request #31 from willmurphyscode/main
fix: remove stray println
2024-12-10 16:09:45 -06:00
Will Murphy c80d150fdc fix: remove stray println 2024-12-10 17:00:57 -05:00
-2
View File
@@ -3,7 +3,6 @@ package squashfslow
import (
"encoding/binary"
"errors"
"fmt"
"io"
"math"
@@ -136,7 +135,6 @@ func (r *Reader) fragEntry(i uint32) (fragEntry, error) {
} else {
blockNum = 0
}
fmt.Println(blockNum)
blocksRead := len(r.fragTable) / 512
blocksToRead := int(blockNum) - blocksRead + 1