Skip to content
Snippets Groups Projects
Commit a9abb0d7 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard
Browse files

vkd3d: Fix misplaced parenthesis.

parent 12180a8e
No related branches found
No related tags found
No related merge requests found
......@@ -417,7 +417,7 @@ static void vkd3d_init_debug_report(struct vkd3d_instance *instance)
callback_info.flags = VK_DEBUG_REPORT_ERROR_BIT_EXT | VK_DEBUG_REPORT_WARNING_BIT_EXT;
callback_info.pfnCallback = vkd3d_debug_report_callback;
callback_info.pUserData = NULL;
if ((vr = VK_CALL(vkCreateDebugReportCallbackEXT(vk_instance, &callback_info, NULL, &callback)) < 0))
if ((vr = VK_CALL(vkCreateDebugReportCallbackEXT(vk_instance, &callback_info, NULL, &callback))) < 0)
{
WARN("Failed to create debug report callback, vr %d.\n", vr);
return;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment