Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cbpfc.go
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@ var condToInverse = map[bpf.JumpTest]bpf.JumpTest{
}

// pos stores the absolute position of a cBPF instruction
type pos uint
type pos uint32

// skips store cBPF jumps, which are relative
type skip uint
type skip uint32

// instruction wraps a bpf instruction with it's
// original position
Expand Down
Loading