Commit 33608a2c authored by Ziqing Hui's avatar Ziqing Hui Committed by Alexandre Julliard

windowscodecs/tests: Fix an argument typo in ok().

parent 4c4a5cb7
......@@ -495,7 +495,7 @@ static IWICBitmapDecoder *create_decoder(void)
hr = IWICBitmapDecoder_GetContainerFormat(decoder, &guidresult);
ok(hr == S_OK, "GetContainerFormat failed, hr %#x\n", hr);
ok(IsEqualGUID(&guidresult, &GUID_ContainerFormatDds),
"Got unexpected container format %s\n", debugstr_guid(&GUID_ContainerFormatDds));
"Got unexpected container format %s\n", debugstr_guid(&guidresult));
return decoder;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment