On Fri, Dec 13, 2019 at 5:03 AM Rémi Bernon <rbernon@codeweavers.com> wrote:
+
+    timeline_semaphore = &info->timeline_semaphore_properties;
+    TRACE("  VkPhysicalDeviceTimelineSemaphorePropertiesKHR:\n");
+    TRACE("    maxTimelineSemaphoreValueDifference: %u.\n", timeline_semaphore->maxTimelineSemaphoreValueDifference);
 }

maxTimelineSemaphoreValueDifference is declared as uint64_t, so this causes a format argument warning.

Conor