aboutsummaryrefslogtreecommitdiff
path: root/loader
diff options
context:
space:
mode:
Diffstat (limited to 'loader')
-rw-r--r--loader/wsi.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/loader/wsi.c b/loader/wsi.c
index 405f2c80..43807e98 100644
--- a/loader/wsi.c
+++ b/loader/wsi.c
@@ -753,7 +753,7 @@ VKAPI_ATTR VkResult VKAPI_CALL terminator_CreateWaylandSurfaceKHR(
const VkAllocationCallbacks *pAllocator, VkSurfaceKHR *pSurface) {
// First, check to ensure the appropriate extension was enabled:
struct loader_instance *ptr_instance = loader_get_instance(instance);
- if (!ptr_instance->wsi_waland_surface_enabled) {
+ if (!ptr_instance->wsi_wayland_surface_enabled) {
loader_log(ptr_instance, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0,
"VK_KHR_wayland_surface extension not enabled. "
"vkCreateWaylandSurfaceKHR not executed!\n");
@@ -808,7 +808,7 @@ terminator_GetPhysicalDeviceWaylandPresentationSupportKHR(
(struct loader_physical_device *)physicalDevice;
struct loader_instance *ptr_instance =
(struct loader_instance *)phys_dev->this_icd->this_instance;
- if (!ptr_instance->wsi_waland_surface_enabled) {
+ if (!ptr_instance->wsi_wayland_surface_enabled) {
loader_log(ptr_instance, VK_DEBUG_REPORT_ERROR_BIT_EXT, 0,
"VK_KHR_wayland_surface extension not enabled. "
"vkGetPhysicalDeviceWaylandPresentationSupportKHR not executed!\n");