Francois Gouget : windowscodecs/tests: Fix a typo in a variable name.

Alexandre Julliard julliard at winehq.org
Mon Feb 8 15:46:42 CST 2021


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

Author: Francois Gouget <fgouget at free.fr>
Date:   Mon Feb  8 17:37:04 2021 +0100

windowscodecs/tests: Fix a typo in a variable name.

Signed-off-by: Francois Gouget <fgouget at free.fr>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 dlls/windowscodecs/tests/metadata.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/windowscodecs/tests/metadata.c b/dlls/windowscodecs/tests/metadata.c
index e6e46c389f9..b597e5490c6 100644
--- a/dlls/windowscodecs/tests/metadata.c
+++ b/dlls/windowscodecs/tests/metadata.c
@@ -3056,7 +3056,7 @@ static void test_metadata_writer(void)
         REFCLSID rclsid;
         BOOL wine_supports_encoder;
         BOOL metadata_supported;
-        BOOL succeeds_unitialized;
+        BOOL succeeds_uninitialized;
     }
     tests[] =
     {
@@ -3106,7 +3106,7 @@ static void test_metadata_writer(void)
         ok(hr == (tests[i].metadata_supported ? S_OK : E_INVALIDARG), "Got unexpected hr %#x, i %u.\n", hr, i);
 
         hr = IWICBitmapFrameEncode_GetMetadataQueryWriter(frameencode, &querywriter2);
-        ok(hr == (tests[i].succeeds_unitialized ? S_OK : WINCODEC_ERR_NOTINITIALIZED),
+        ok(hr == (tests[i].succeeds_uninitialized ? S_OK : WINCODEC_ERR_NOTINITIALIZED),
                 "Got unexpected hr %#x, i %u.\n", hr, i);
         if (hr == S_OK)
             IWICMetadataQueryWriter_Release(querywriter2);




More information about the wine-cvs mailing list