Andrey Gusev : gdiplus/tests: Fix copy-paste typos.

Alexandre Julliard julliard at winehq.org
Fri Mar 2 12:16:46 CST 2018


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

Author: Andrey Gusev <andrey.goosev at gmail.com>
Date:   Fri Mar  2 12:03:49 2018 +0200

gdiplus/tests: Fix copy-paste typos.

Signed-off-by: Andrey Gusev <andrey.goosev at gmail.com>
Signed-off-by: Vincent Povirk <vincent at codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 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 34222e7..4fd2744 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));




More information about the wine-cvs mailing list