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

fmt: remove space in front of ? and ! (#14366)

This commit is contained in:
Daniel Däschle
2022-05-13 05:56:21 +02:00
committed by GitHub
parent df029da942
commit d679146a80
324 changed files with 1865 additions and 1879 deletions

View File

@ -29,7 +29,7 @@ pub fn (mut con TcpConn) set_blocking(state bool) ? {
if !con.is_blocking {
t = 1
}
socket_error(C.ioctlsocket(con.sock.handle, fionbio, &t)) ?
socket_error(C.ioctlsocket(con.sock.handle, fionbio, &t))?
} $else {
mut flags := C.fcntl(con.sock.handle, C.F_GETFL, 0)
if state {
@ -37,7 +37,7 @@ pub fn (mut con TcpConn) set_blocking(state bool) ? {
} else {
flags |= C.O_NONBLOCK
}
socket_error(C.fcntl(con.sock.handle, C.F_SETFL, flags)) ?
socket_error(C.fcntl(con.sock.handle, C.F_SETFL, flags))?
}
}