From 2ce21cd3f72eb192e1317b12b468b857e3aedfe1 Mon Sep 17 00:00:00 2001 From: konodin Date: Sun, 18 Jan 2026 21:42:14 +0100 Subject: [PATCH 1/2] Fix `endpoint_to_string` missing colon --- core/net/addr.odin | 1 + 1 file changed, 1 insertion(+) 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, "[") From d838065d32bd5088ad5cd1707d4a961c19d3daa3 Mon Sep 17 00:00:00 2001 From: wpcasarin <72427968+wpcasarin@users.noreply.github.com> Date: Sun, 18 Jan 2026 23:28:52 -0300 Subject: [PATCH 2/2] vendor/x11/xlib: Fix XSetWindowBackgroundPixmap binding name Changed SetWindowBackgroundMap to SetWindowBackgroundPixmap to match the actual X11 C function name. The incorrect name caused linker errors. --- vendor/x11/xlib/xlib_procs.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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,