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

ci: fix compilation of check_os_api_parity.v

This commit is contained in:
Delyan Angelov 2020-07-04 14:27:23 +03:00
parent 35431d457b
commit b4dc968db5

View File

@ -100,7 +100,7 @@ fn (app App) gen_api_for_module_in_os(mod_name, os_name string) string {
if s is ast.FnDecl {
fnd := s as ast.FnDecl
if fnd.is_pub {
fn_signature := fnd.str(b.table)
fn_signature := fnd.stringify(b.table)
fn_mod := fnd.modname()
if fn_mod == mod_name {
fline := '${fn_mod}: $fn_signature'