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

Alexandre Julliard julliard at winehq.org
Mon Feb 1 16:13:07 CST 2021


Module: wine
Branch: master
Commit: 33608a2c9ce1779dd4fe1280e6200ecbc3975906
URL:    https://source.winehq.org/git/wine.git/?a=commit;h=33608a2c9ce1779dd4fe1280e6200ecbc3975906

Author: Ziqing Hui <zhui at codeweavers.com>
Date:   Fri Jan 29 13:02:40 2021 +0800

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

Signed-off-by: Ziqing Hui <zhui at codeweavers.com>
Signed-off-by: Esme Povirk <esme at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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;
 }




More information about the wine-cvs mailing list