Module: wine Branch: master Commit: 96c8d383603d508468bd574f58a05a66395e4e80 URL: https://gitlab.winehq.org/wine/wine/-/commit/96c8d383603d508468bd574f58a05a6...
Author: Francois Gouget fgouget@free.fr Date: Mon Feb 13 18:34:22 2023 +0100
winevulkan: Fix a typo in a comment.
---
dlls/winevulkan/make_vulkan | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/winevulkan/make_vulkan b/dlls/winevulkan/make_vulkan index 41a70717674..24006a3f5f4 100755 --- a/dlls/winevulkan/make_vulkan +++ b/dlls/winevulkan/make_vulkan @@ -1168,7 +1168,7 @@ class VkVariable(object): parent = self.parent len = prefix
- # check if lenght is a member of another struct (for example pAllocateInfo->commandBufferCount) + # check if length is a member of another struct (for example pAllocateInfo->commandBufferCount) i = len_str.find("->") if i != -1: var = parent[parent.index(len_str[0:i])]