Skip to content

Commit

Permalink
fix parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
pimlu committed Oct 16, 2024
1 parent f8674bd commit 8c5593e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkg/flare/sysprobe/archive_sysprobe_nolinux.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ package sysprobe
import "errors"

// GetSystemProbeConntrackCached is not supported without the process agent on linux
func GetSystemProbeConntrackCached(socketPath string) ([]byte, error) {
func GetSystemProbeConntrackCached(_ string) ([]byte, error) {
return nil, errors.New("GetSystemProbeConntrackCached is not supported without the process agent on linux")
}

// GetSystemProbeConntrackHost is not supported without the process agent on linux
func GetSystemProbeConntrackHost(socketPath string) ([]byte, error) {
func GetSystemProbeConntrackHost(_ string) ([]byte, error) {
return nil, errors.New("GetSystemProbeConntrackHost is not supported without the process agent on linux")
}

// GetSystemProbeConntrackHostFull is not supported without the process agent on linux
func GetSystemProbeConntrackHostFull(socketPath string) ([]byte, error) {
func GetSystemProbeConntrackHostFull(_ string) ([]byte, error) {
return nil, errors.New("GetSystemProbeConntrackHostFull is not supported without the process agent on linux")
}

0 comments on commit 8c5593e

Please sign in to comment.