From 36d1c4540af3ef058d68092e41af05aa4a8c5eca Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Thu, 8 Mar 2018 18:48:26 +0100 Subject: all: fix gometalinter warnings Fix typos, non-canonical code, remove dead code, etc. --- executor/test.go | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'executor/test.go') diff --git a/executor/test.go b/executor/test.go index 7bab3933c..f318b5627 100644 --- a/executor/test.go +++ b/executor/test.go @@ -28,3 +28,11 @@ func testCsumInetAcc() int { func testKVM() int { return int(C.test_kvm()) } + +// Prevent deadcode warnings: +var ( + _ = testCopyin + _ = testCsumInet + _ = testCsumInetAcc + _ = testKVM +) -- cgit mrf-deployment