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

tests: fix warnings in live_test.v

This commit is contained in:
Delyan Angelov 2020-10-15 23:14:54 +03:00
parent b083f4014b
commit 6cea20e427

View File

@ -44,7 +44,7 @@ import time
import os
import live
fn append_to_file(fname, s string) {
fn append_to_file(fname string, s string) {
mut f := os.open_append(fname) or {
println('>>>> could not open file \$fname for appending, err: \$err ')
return