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

vfmt: fix merged param warnings in sokol's particles example and vlib/x/net/udp.v

This commit is contained in:
Delyan Angelov
2020-10-18 13:45:13 +03:00
parent 44753e62ab
commit 2f149e6984
4 changed files with 7 additions and 7 deletions

View File

@ -13,7 +13,7 @@ mut:
write_timeout time.Duration
}
pub fn dial_udp(laddr, raddr string) ?UdpConn {
pub fn dial_udp(laddr string, raddr string) ?UdpConn {
// Dont have to do this when its fixed
// this just allows us to store this `none` optional in a struct
resolve_wrapper := fn(raddr string) ?Addr {