Commit 71e2c4b4 authored by Andrey Gusev's avatar Andrey Gusev Committed by Alexandre Julliard

gdiplus/tests: Fix copy-paste typos.

parent 51fe44ed
...@@ -5171,11 +5171,11 @@ static void test_GdipLoadImageFromStream(void) ...@@ -5171,11 +5171,11 @@ static void test_GdipLoadImageFromStream(void)
HRESULT hr; HRESULT hr;
status = GdipLoadImageFromStream(NULL, NULL); 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; image = (void *)0xdeadbeef;
status = GdipLoadImageFromStream(NULL, &image); 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"); ok(image == (void *)0xdeadbeef, "Unexpected image pointer.\n");
hglob = GlobalAlloc(0, sizeof(pngimage)); hglob = GlobalAlloc(0, sizeof(pngimage));
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment