Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e8c6dda

Browse files
committedMar 10, 2025·
lint: fix go fmt lint error
Signed-off-by: Xynnn007 <[email protected]>
1 parent 1247745 commit e8c6dda

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎filesystem/squashfs/finalize.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -1107,10 +1107,10 @@ func createInodes(fileList []*finalizeFileInfo, idtable map[uint32]uint16, optio
11071107
// use extendedFile inode
11081108
ef := &extendedFile{
11091109
blocksStart: uint64(e.dataLocation),
1110-
fileSize: uint64(e.Size()),
1111-
blockSizes: e.blocks,
1112-
links: e.links,
1113-
xAttrIndex: e.xAttrIndex,
1110+
fileSize: uint64(e.Size()),
1111+
blockSizes: e.blocks,
1112+
links: e.links,
1113+
xAttrIndex: e.xAttrIndex,
11141114
}
11151115
if e.fragment != nil {
11161116
ef.fragmentBlockIndex = e.fragment.block

0 commit comments

Comments
 (0)
Please sign in to comment.