ci: fix warning for cmd/tools/vvet/vvet.v

pull/7965/head^2
Delyan Angelov 2021-01-09 19:41:30 +02:00
parent ca83746884
commit fb7a5ee3af
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED
1 changed files with 1 additions and 1 deletions

View File

@ -75,7 +75,7 @@ fn (mut vet_options VetOptions) vet_file(path string) {
prefs.is_vet = true
table := table.new_table()
vet_options.vprintln("vetting file '$path'...")
file_ast, errors := parser.parse_vet_file(path, table, prefs)
_, errors := parser.parse_vet_file(path, table, prefs)
// Transfer errors from scanner and parser
vet_options.errors << errors
}