diff options
author | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2016-04-19 16:16:29 +0300 |
---|---|---|
committer | Pekka Paalanen <pekka.paalanen@collabora.co.uk> | 2016-04-22 10:43:40 +0300 |
commit | 13a26e02e5efe176cd8262ccd8203e4225f22613 (patch) | |
tree | 2595b010185aeeecf9d0e475cb5fc7623f5c453f /clients | |
parent | ed6014a9e481772580f7eb9fc7a1200aca7aec5c (diff) |
weston-info: look for the right wp_presentation
Patch b00c79b587a4903df576008a64a49f851fed234c forgot to update the
global interface name to look for. Fix it.
This makes weston-info report the presentation clock again.
Signed-off-by: Pekka Paalanen <pekka.paalanen@collabora.co.uk>
Reviewed-by: Bryce Harrington <bryce@osg.samsung.com>
Diffstat (limited to 'clients')
-rw-r--r-- | clients/weston-info.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/clients/weston-info.c b/clients/weston-info.c index aa818167..c4f76608 100644 --- a/clients/weston-info.c +++ b/clients/weston-info.c @@ -662,7 +662,7 @@ global_handler(void *data, struct wl_registry *registry, uint32_t id, add_shm_info(info, id, version); else if (!strcmp(interface, "wl_output")) add_output_info(info, id, version); - else if (!strcmp(interface, "presentation")) + else if (!strcmp(interface, wp_presentation_interface.name)) add_presentation_info(info, id, version); else add_global_info(info, id, interface, version); |