diff options
Diffstat (limited to 'clients/screenshot.c')
-rw-r--r-- | clients/screenshot.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/clients/screenshot.c b/clients/screenshot.c index 8681a41c..efacfed6 100644 --- a/clients/screenshot.c +++ b/clients/screenshot.c @@ -128,8 +128,15 @@ handle_global(void *data, struct wl_registry *registry, } } +static void +handle_global_remove(void *data, struct wl_registry *registry, uint32_t name) +{ + /* XXX: unimplemented */ +} + static const struct wl_registry_listener registry_listener = { - handle_global + handle_global, + handle_global_remove }; static struct wl_buffer * |