diff --git a/core/net/addr.odin b/core/net/addr.odin index a3fa02cce..d29b46b65 100644 --- a/core/net/addr.odin +++ b/core/net/addr.odin @@ -619,6 +619,7 @@ endpoint_to_string :: proc(ep: Endpoint, allocator := context.temp_allocator) -> switch a in ep.address { case IP4_Address: strings.write_string(&b, s) + strings.write_string(&b, ":") strings.write_int(&b, ep.port) case IP6_Address: strings.write_string(&b, "[") diff --git a/vendor/x11/xlib/xlib_procs.odin b/vendor/x11/xlib/xlib_procs.odin index c33c6d351..42e49ea02 100644 --- a/vendor/x11/xlib/xlib_procs.odin +++ b/vendor/x11/xlib/xlib_procs.odin @@ -241,7 +241,7 @@ foreign xlib { window: Window, pixel: uint, ) --- - SetWindowBackgroundMap :: proc( + SetWindowBackgroundPixmap :: proc( display: ^Display, window: Window, pixmap: Pixmap,