windowscodecs/tests: Fix an argument typo in ok().
Signed-off-by: Ziqing Hui <zhui@codeweavers.com> Signed-off-by: Esme Povirk <esme@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
4c4a5cb799
commit
33608a2c9c
|
@ -495,7 +495,7 @@ static IWICBitmapDecoder *create_decoder(void)
|
||||||
hr = IWICBitmapDecoder_GetContainerFormat(decoder, &guidresult);
|
hr = IWICBitmapDecoder_GetContainerFormat(decoder, &guidresult);
|
||||||
ok(hr == S_OK, "GetContainerFormat failed, hr %#x\n", hr);
|
ok(hr == S_OK, "GetContainerFormat failed, hr %#x\n", hr);
|
||||||
ok(IsEqualGUID(&guidresult, &GUID_ContainerFormatDds),
|
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;
|
return decoder;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue