[PATCH] gdiplus/tests: Fix copy-paste typos.

Andrey Gusev andrey.goosev at gmail.com
Fri Mar 2 04:03:49 CST 2018


Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
---
 dlls/gdiplus/tests/image.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/gdiplus/tests/image.c b/dlls/gdiplus/tests/image.c
index 34222e7ce0..4fd2744132 100644
--- a/dlls/gdiplus/tests/image.c
+++ b/dlls/gdiplus/tests/image.c
@@ -5171,11 +5171,11 @@ static void test_GdipLoadImageFromStream(void)
     HRESULT hr;
 
     status = GdipLoadImageFromStream(NULL, NULL);
-    ok(status == InvalidParameter, "Unexected return value %d.\n", status);
+    ok(status == InvalidParameter, "Unexpected return value %d.\n", status);
 
     image = (void *)0xdeadbeef;
     status = GdipLoadImageFromStream(NULL, &image);
-    ok(status == InvalidParameter, "Unexected return value %d.\n", status);
+    ok(status == InvalidParameter, "Unexpected return value %d.\n", status);
     ok(image == (void *)0xdeadbeef, "Unexpected image pointer.\n");
 
     hglob = GlobalAlloc(0, sizeof(pngimage));
-- 
2.13.6




More information about the wine-devel mailing list