From 979044ad2f7b7002258209e4ada2df4dd25d9747 Mon Sep 17 00:00:00 2001 From: Angus Lees Date: Fri, 13 May 2016 17:18:39 +1000 Subject: [PATCH] pkg/ns: use correct syscall number on arm --- pkg/ns/ns.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ns/ns.go b/pkg/ns/ns.go index 4f0814f1..ea848224 100644 --- a/pkg/ns/ns.go +++ b/pkg/ns/ns.go @@ -24,7 +24,7 @@ import ( var setNsMap = map[string]uintptr{ "386": 346, "amd64": 308, - "arm": 374, + "arm": 375, } // SetNS sets the network namespace on a target file.