[PATCH] windowscodecs/tests: Fix a typo in a variable name.

Francois Gouget fgouget at free.fr
Mon Feb 8 10:37:04 CST 2021


Signed-off-by: Francois Gouget <fgouget at free.fr>
---
 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);
-- 
2.20.1



More information about the wine-devel mailing list