From d2f8d5ab46fe67b2f03387be9e6f38ffe5f227ba Mon Sep 17 00:00:00 2001 From: Dmitry Vyukov Date: Fri, 17 Jan 2020 17:37:49 +0100 Subject: sys/linux: fix sigset_t/sigaction layout on arm Update #590 --- tools/syz-check/check.go | 3 +++ 1 file changed, 3 insertions(+) (limited to 'tools/syz-check') diff --git a/tools/syz-check/check.go b/tools/syz-check/check.go index f3ac27f2d..f5f0e7454 100644 --- a/tools/syz-check/check.go +++ b/tools/syz-check/check.go @@ -141,6 +141,9 @@ func writeWarnings(OS string, narches int, warnings []Warn) error { if w1.pos.Line != w2.pos.Line { return w1.pos.Line < w2.pos.Line } + if w1.typ != w2.typ { + return w1.typ < w2.typ + } if w1.msg != w2.msg { return w1.msg < w2.msg } -- cgit mrf-deployment