diff options
Diffstat (limited to 'src/window/wayland.c')
-rw-r--r-- | src/window/wayland.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/window/wayland.c b/src/window/wayland.c index b7907be..d9f6e74 100644 --- a/src/window/wayland.c +++ b/src/window/wayland.c @@ -100,6 +100,7 @@ static const struct wl_output_listener output_listener = { static void registry_add_object(void *data, struct wl_registry *registry, uint32_t name, const char *interface, uint32_t version) { (void)version; gsr_window_wayland *window_wayland = data; + printf("info: wayland interface: %s\n", interface); if(strcmp(interface, "wl_compositor") == 0) { if(window_wayland->compositor) return; |