From 5db39ab95395b60c5629a84812086f720adc9ccf Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Tue, 5 Sep 2017 10:38:22 +0200 Subject: sys: rename Call to Syscall In preparation for moving sys types to prog to avoid confusion between sys.Call and prog.Call. --- prog/encodingexec_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'prog/encodingexec_test.go') diff --git a/prog/encodingexec_test.go b/prog/encodingexec_test.go index bc9e1d705..055d4e375 100644 --- a/prog/encodingexec_test.go +++ b/prog/encodingexec_test.go @@ -47,7 +47,7 @@ func TestSerializeForExec(t *testing.T) { argData = uint64(ExecArgData) ) callID := func(name string) uint64 { - c := sys.CallMap[name] + c := sys.SyscallMap[name] if c == nil { t.Fatalf("unknown syscall %v", name) } -- cgit mrf-deployment