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

examples: fix unsafe 0

This commit is contained in:
Alexander Medvednikov
2022-06-26 07:12:15 +03:00
parent ca30397e7a
commit cb60392302
9 changed files with 12 additions and 12 deletions

View File

@@ -32,7 +32,7 @@ pub enum BodyType {
pub struct Client {
mut:
conn net.TcpConn
ssl_conn &openssl.SSLConn = 0
ssl_conn &openssl.SSLConn = unsafe { 0 }
reader io.BufferedReader
pub:
server string