Skip to content

Commit

Permalink
[host] d12: fix error output string format
Browse files Browse the repository at this point in the history
  • Loading branch information
gnif committed Mar 11, 2024
1 parent 6e37305 commit d902afa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion host/platform/Windows/capture/D12/d12.c
Original file line number Diff line number Diff line change
Expand Up @@ -1019,7 +1019,7 @@ static bool d12_heapTest(ID3D12Device3 * device, ID3D12Heap * heap)
hr = ID3D12Device3_GetDeviceRemovedReason(device);
if (hr != S_OK)
{
DEBUG_WINERROR("Device Removed: %s", hr);
DEBUG_WINERROR("Device Removed", hr);
goto exit;
}

Expand Down

0 comments on commit d902afa

Please sign in to comment.