diff options
Diffstat (limited to 'tools/syz-testbed/table.go')
| -rw-r--r-- | tools/syz-testbed/table.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/syz-testbed/table.go b/tools/syz-testbed/table.go index d170b2b8c..ee3ffd0e7 100644 --- a/tools/syz-testbed/table.go +++ b/tools/syz-testbed/table.go @@ -161,7 +161,7 @@ func (t *Table) SetRelativeValues(baseColumn string) error { for rowName, row := range t.Cells { baseCell := t.Get(rowName, baseColumn) if baseCell == nil { - return fmt.Errorf("base column %s not found in row %s", baseColumn, rowName) + continue } baseValueCell, ok := baseCell.(*ValueCell) if !ok { |
