Skip to content

Commit

Permalink
Merge pull request #312 from bfforever/kmesh-issues
Browse files Browse the repository at this point in the history
Fix the Enhanced Compilation Failure Issue
  • Loading branch information
kmesh-bot authored May 11, 2024
2 parents dfa7dbc + d296a23 commit 934284c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/bpf/bpf_kmesh.go
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,10 @@ func (sc *BpfSockOps) NewBpf(cfg *options.BpfConfig) error {
return nil
}

func NewBpfKmesh(cfg *options.BpfConfig) (BpfKmesh, error) {
func NewBpfKmesh(cfg *options.BpfConfig) (*BpfKmesh, error) {
var err error

sc := BpfKmesh{}
sc := &BpfKmesh{}

sc.TracePoint.NewBpf(cfg)

Expand Down

0 comments on commit 934284c

Please sign in to comment.