aboutsummaryrefslogtreecommitdiff
path: root/registry.c
diff options
context:
space:
mode:
authorJack Jamison <jackqjamison@gmail.com>2025-10-18 01:36:29 -0400
committerJack Jamison <jackqjamison@gmail.com>2025-10-18 01:36:29 -0400
commit4ec95c0bc1223aee10449bf831d29f4f683faff7 (patch)
tree9b0bbe206daacf19fecdcc74093c06f1cdf0f89f /registry.c
parentb6db9c7c1b8e2cef958b892b067aa565f4c5e403 (diff)
fix output and swenu-run
Diffstat (limited to 'registry.c')
-rw-r--r--registry.c2
1 files changed, 1 insertions, 1 deletions
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);