Francois Gouget : winevulkan: Fix the spelling of an ERR() message.
Module: wine Branch: master Commit: 0d6f7d44a2f5390f74501376b9d9017855ac9c5e URL: https://source.winehq.org/git/wine.git/?a=commit;h=0d6f7d44a2f5390f74501376b... Author: Francois Gouget <fgouget(a)free.fr> Date: Fri Dec 13 00:13:24 2019 +0100 winevulkan: Fix the spelling of an ERR() message. Signed-off-by: Francois Gouget <fgouget(a)free.fr> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/winevulkan/vulkan.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/winevulkan/vulkan.c b/dlls/winevulkan/vulkan.c index 725bdf019e..59472bcef8 100644 --- a/dlls/winevulkan/vulkan.c +++ b/dlls/winevulkan/vulkan.c @@ -1050,7 +1050,7 @@ VkResult WINAPI wine_vkQueueSubmit(VkQueue queue, uint32_t count, command_buffers = heap_calloc(num_command_buffers, sizeof(*submits_host)); if (!command_buffers) { - ERR("Unable to allocate memory for comman buffers!\n"); + ERR("Unable to allocate memory for command buffers!\n"); res = VK_ERROR_OUT_OF_HOST_MEMORY; goto done; }
participants (1)
-
Alexandre Julliard