aboutsummaryrefslogtreecommitdiffstats
path: root/prog/encodingexec_test.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2017-09-05 10:38:22 +0200
committerDmitry Vyukov <dvyukov@google.com>2017-09-05 10:38:22 +0200
commit5db39ab95395b60c5629a84812086f720adc9ccf (patch)
tree75fac9b668196f734366d219ca35613576596bd6 /prog/encodingexec_test.go
parentc34180fca06cc29d2a29f3c1eec3131c6a0caf16 (diff)
sys: rename Call to Syscall
In preparation for moving sys types to prog to avoid confusion between sys.Call and prog.Call.
Diffstat (limited to 'prog/encodingexec_test.go')
-rw-r--r--prog/encodingexec_test.go2
1 files changed, 1 insertions, 1 deletions
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)
}