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

fix all Foo{!}

This commit is contained in:
Alexander Medvednikov
2019-12-04 13:08:28 +03:00
parent e32cbfcca7
commit 40df0644ca
4 changed files with 11 additions and 11 deletions

View File

@ -73,7 +73,7 @@ fn (req &Request) ssl_do(port int, method, host_name, path string) ?Response {
res = C.BIO_set_conn_hostname(web, addr.str)
if res != 1 {
}
ssl := &C.SSL{!}
ssl := &C.SSL(0)
C.BIO_get_ssl(web, &ssl)
if isnil(ssl) {
}