From 33608a2c9ce1779dd4fe1280e6200ecbc3975906 Mon Sep 17 00:00:00 2001 From: Ziqing Hui Date: Fri, 29 Jan 2021 13:02:40 +0800 Subject: [PATCH] windowscodecs/tests: Fix an argument typo in ok(). Signed-off-by: Ziqing Hui Signed-off-by: Esme Povirk Signed-off-by: Alexandre Julliard --- dlls/windowscodecs/tests/ddsformat.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/windowscodecs/tests/ddsformat.c b/dlls/windowscodecs/tests/ddsformat.c index b7b002d380d..28554e77c9b 100644 --- a/dlls/windowscodecs/tests/ddsformat.c +++ b/dlls/windowscodecs/tests/ddsformat.c @@ -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; }