Skip to content
This repository has been archived by the owner on Feb 17, 2024. It is now read-only.

Commit

Permalink
fix linux build
Browse files Browse the repository at this point in the history
Signed-off-by: Achille Roussel <[email protected]>
  • Loading branch information
achille-roussel committed Aug 5, 2023
1 parent 07f9bd0 commit d726bad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/sandbox/syscall_linux.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ type dirent struct {
func makeDirent(typ uint8, ino, off uint64, name string) dirent {
return dirent{
ino: ino,
off: off,
off: int64(off),
reclen: sizeOfDirent + uint16(len(name)) + 1,
typ: typ,
}
Expand Down

0 comments on commit d726bad

Please sign in to comment.