Made a few straggler functions private

This commit is contained in:
Caleb Gardner
2020-11-25 08:31:24 -06:00
parent afbc991f60
commit c0291e3ac7
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -9,7 +9,7 @@ import (
)
//FragmentEntry is an entry in the fragment table
type FragmentEntry struct {
type fragmentEntry struct {
Start uint64
Size uint32
Unused uint32
@@ -57,7 +57,7 @@ func (r *Reader) getFragmentDataFromInode(in *inode.Inode) ([]byte, error) {
if err != nil {
return nil, err
}
var entry FragmentEntry
var entry fragmentEntry
err = binary.Read(fragEntryRdr, binary.LittleEndian, &entry)
if err != nil {
return nil, err