aboutsummaryrefslogtreecommitdiffstats
path: root/tools/syz-testbed/stats.go
diff options
context:
space:
mode:
authorAleksandr Nogikh <nogikh@google.com>2022-02-11 10:54:41 +0000
committerAleksandr Nogikh <wp32pw@gmail.com>2022-02-25 18:57:42 +0100
commit8219a518aefc8a87e16ffbec8cd06944a0160032 (patch)
treed08b7981f73262c1664bcdd8a2eb2a1e2fc80d2d /tools/syz-testbed/stats.go
parent8135420d02be9c03a0fec5391c3088c978872af6 (diff)
tools/syz-testbed: introduce BoolCell cell type
Diffstat (limited to 'tools/syz-testbed/stats.go')
-rw-r--r--tools/syz-testbed/stats.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syz-testbed/stats.go b/tools/syz-testbed/stats.go
index 1ff4af4d0..0db75c45c 100644
--- a/tools/syz-testbed/stats.go
+++ b/tools/syz-testbed/stats.go
@@ -142,7 +142,7 @@ func (view StatView) GenerateBugTable() (*Table, error) {
for _, bug := range summaries {
for _, group := range view.Groups {
if bug.found[group.Name] {
- table.Set(bug.title, group.Name, "YES")
+ table.Set(bug.title, group.Name, NewBoolCell(true))
}
}
}