1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

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

This commit is contained in:
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

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
}