vulkan/wsi: fix pointer-integer conversion warnings
[mesa.git] / src / vulkan / wsi / wsi_common_display.c
index e6cba188dfaf8d790415ea104e2941662dedbbc6..1e90bba460cba190c5ab04709a7feacc45558bb2 100644 (file)
@@ -1517,7 +1517,7 @@ wsi_register_vblank_event(struct wsi_display_fence *fence,
                                      flags,
                                      frame_requested,
                                      frame_queued,
-                                     (uint64_t) fence);
+                                     (uintptr_t) fence);
 
       if (!ret)
          return VK_SUCCESS;
@@ -2342,7 +2342,7 @@ wsi_get_randr_output_display(VkPhysicalDevice physical_device,
    if (connector)
       *display = wsi_display_connector_to_handle(connector);
    else
-      *display = NULL;
+      *display = VK_NULL_HANDLE;
    return VK_SUCCESS;
 }