The open source OpenXR runtime
0
fork

Configure Feed

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

c/main: Fix printf formatting on 32bit

authored by

Ryan Pavlik and committed by
Jakob Bornecrantz
06b91dab 43ac5d44

+1 -1
+1 -1
src/xrt/compositor/main/comp_target_swapchain.c
··· 454 454 &counter_val); // pCounterValue 455 455 456 456 if (ret == VK_SUCCESS) { 457 - COMP_SPEW(cts->base.c, "vkGetSwapchainCounterEXT: %lu", counter_val); 457 + COMP_SPEW(cts->base.c, "vkGetSwapchainCounterEXT: %" PRIu64, counter_val); 458 458 } else if (ret == VK_ERROR_OUT_OF_DATE_KHR) { 459 459 COMP_ERROR(cts->base.c, "vkGetSwapchainCounterEXT: Swapchain out of date!"); 460 460 } else {