From 4ec95c0bc1223aee10449bf831d29f4f683faff7 Mon Sep 17 00:00:00 2001 From: Jack Jamison Date: Sat, 18 Oct 2025 01:36:29 -0400 Subject: fix output and swenu-run --- registry.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'registry.c') diff --git a/registry.c b/registry.c index 8230339..204281d 100644 --- a/registry.c +++ b/registry.c @@ -16,7 +16,7 @@ void setup_registry_and_globals(client_state* state) { void global(void *data, struct wl_registry *wl_registry, uint32_t name, const char *interface, uint32_t version) { client_state* state = data; - printf("iface: %s v%d\n", interface, version); + fprintf(stderr, "iface: %s v%d\n", interface, version); if (!strcmp(interface, wl_compositor_interface.name)) { state->compositor = wl_registry_bind(wl_registry, name, &wl_compositor_interface, 1); -- cgit v1.2.3