We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5b762a commit d1d9e6fCopy full SHA for d1d9e6f
1 file changed
libpf/pfelf/file.go
@@ -57,12 +57,11 @@ const (
57
var (
58
// ErrNotELF is returned when the file is not an ELF file.
59
ErrNotELF = errors.New("not an ELF file")
60
- ErrNoTLS = errors.New("no TLS program header")
+ ErrNoTLS = errors.New("no TLS program header")
61
// ErrSectionNotPreset is returned when a section is not present
62
ErrSectionNotPresent = errors.New("section not present")
63
)
64
65
-
66
// File represents an open ELF file
67
type File struct {
68
// closer is called internally when resources for this File are to be released
0 commit comments