From 168c7f3e43da2acd91ca791a22433a3349c4fd67 Mon Sep 17 00:00:00 2001 From: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> Date: Tue, 22 Aug 2023 11:27:35 -0400 Subject: [PATCH] fix: windows build Signed-off-by: Michael Crenshaw <350466+crenshaw-dev@users.noreply.github.com> --- cmpserver/plugin/plugin_windows.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/cmpserver/plugin/plugin_windows.go b/cmpserver/plugin/plugin_windows.go index 2a188e61f6f9e..b8873a9793601 100644 --- a/cmpserver/plugin/plugin_windows.go +++ b/cmpserver/plugin/plugin_windows.go @@ -14,3 +14,7 @@ func newSysProcAttr(setpgid bool) *syscall.SysProcAttr { func sysCallKill(pid int) error { return nil } + +func sysCallTerm(pid int) error { + return nil +}