The open source OpenXR runtime
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

st/prober: fix format modifier in print_system_devices

Part-of: <https://gitlab.freedesktop.org/monado/monado/-/merge_requests/2272>

authored by

Simon Zeni and committed by
Rylie Pavlik
6847183c 128f20df

+2 -2
+2 -2
src/xrt/state_trackers/prober/p_prober.c
··· 853 853 u_pp(dg, "\n\tIn roles:"); 854 854 855 855 #define PH(IDENT) \ 856 - u_pp(dg, "\n\t\t%s: %s, view count: %lu", #IDENT, \ 856 + u_pp(dg, "\n\t\t%s: %s, view count: %zu", #IDENT, \ 857 857 xsysd->static_roles.IDENT ? xsysd->static_roles.IDENT->str : "<none>", \ 858 - xsysd->static_roles.IDENT ? xsysd->static_roles.IDENT->hmd->view_count : 0) 858 + xsysd->static_roles.IDENT ? xsysd->static_roles.IDENT->hmd->view_count : 0u); 859 859 #define P(IDENT) u_pp(dg, "\n\t\t%s: %s", #IDENT, xsysd->static_roles.IDENT ? xsysd->static_roles.IDENT->str : "<none>") 860 860 #define PD(IDENT) u_pp(dg, "\n\t\t%s: %s", #IDENT, roles.IDENT >= 0 ? xsysd->xdevs[roles.IDENT]->str : "<none>") 861 861