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

examples: fix v -cflags "-Werror" test examples/

This commit is contained in:
Delyan Angelov
2021-03-19 11:14:52 +02:00
parent 82c4daa4b7
commit 4f6306f6d4
2 changed files with 2 additions and 6 deletions

View File

@ -9,7 +9,7 @@ fn main() {
library_file_path := os.join_path(os.getwd(), dl.get_libname('library'))
handle := dl.open(library_file_path, dl.rtld_lazy)
eprintln('handle: ${ptr_str(handle)}')
mut f := &FNAdder(0)
mut f := FNAdder(0)
f = dl.sym(handle, 'add_1')
eprintln('f: ${ptr_str(f)}')
res := f(1, 2)