From cce2d16538b41615132a07ec08d5bdc91c1851e3 Mon Sep 17 00:00:00 2001 From: shirou Date: Mon, 10 Dec 2018 20:20:53 +0900 Subject: [PATCH] [process]: add missing argment to process_fallback. --- process/process_fallback.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process/process_fallback.go b/process/process_fallback.go index c49342e..8772440 100644 --- a/process/process_fallback.go +++ b/process/process_fallback.go @@ -118,7 +118,7 @@ func (p *Process) Foreground() (bool, error) { return p.ForegroundWithContext(context.Background()) } -func (p *Process) ForegroundWithContext() (bool, error) { +func (p *Process) ForegroundWithContext(ctx context.Context) (bool, error) { return false, common.ErrNotImplementedError } func (p *Process) Uids() ([]int32, error) {