mirror of
https://gitlab.freedesktop.org/monado/monado.git
synced 2024-12-29 11:06:18 +00:00
c/main: Fix printf formatting on 32bit
This commit is contained in:
parent
43ac5d44cf
commit
06b91dabc8
|
@ -454,7 +454,7 @@ get_surface_counter_val(struct comp_target *ct)
|
|||
&counter_val); // pCounterValue
|
||||
|
||||
if (ret == VK_SUCCESS) {
|
||||
COMP_SPEW(cts->base.c, "vkGetSwapchainCounterEXT: %lu", counter_val);
|
||||
COMP_SPEW(cts->base.c, "vkGetSwapchainCounterEXT: %" PRIu64, counter_val);
|
||||
} else if (ret == VK_ERROR_OUT_OF_DATE_KHR) {
|
||||
COMP_ERROR(cts->base.c, "vkGetSwapchainCounterEXT: Swapchain out of date!");
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue