From eaee5fc658fb09669e24b04b2f3d331616cae77e Mon Sep 17 00:00:00 2001 From: Gon Solo Date: Wed, 26 Mar 2025 14:25:49 +0100 Subject: [PATCH] Fix: Spelling mistake in Vulkan error print Pull Request: https://projects.blender.org/blender/blender/pulls/136535 --- intern/ghost/intern/GHOST_ContextVK.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/intern/ghost/intern/GHOST_ContextVK.cc b/intern/ghost/intern/GHOST_ContextVK.cc index 1567aaceb39..830f7bf7844 100644 --- a/intern/ghost/intern/GHOST_ContextVK.cc +++ b/intern/ghost/intern/GHOST_ContextVK.cc @@ -93,7 +93,7 @@ static const char *vulkan_error_as_string(VkResult result) VkResult r = (__expression); \ if (r != VK_SUCCESS) { \ fprintf(stderr, \ - "Vulkan Error : %s:%d : %s failled with %s\n", \ + "Vulkan Error : %s:%d : %s failed with %s\n", \ __FILE__, \ __LINE__, \ __STR(__expression), \