From 13a26e02e5efe176cd8262ccd8203e4225f22613 Mon Sep 17 00:00:00 2001 From: Pekka Paalanen Date: Tue, 19 Apr 2016 16:16:29 +0300 Subject: [PATCH] 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 Reviewed-by: Bryce Harrington --- clients/weston-info.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/weston-info.c b/clients/weston-info.c index aa8181677..c4f76608e 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);