Commit a5e995ae authored by Alexandre Julliard's avatar Alexandre Julliard

Fixed printf formats for -DSTRICT handles.

parent 613ead7f
...@@ -156,11 +156,11 @@ BOOL ClassTest(HINSTANCE hInstance, BOOL global) ...@@ -156,11 +156,11 @@ BOOL ClassTest(HINSTANCE hInstance, BOOL global)
ok(wc.cbWndExtra == cls.cbWndExtra, ok(wc.cbWndExtra == cls.cbWndExtra,
"cbWndExtra did not match %x!=%x",wc.cbWndExtra,cls.cbWndExtra); "cbWndExtra did not match %x!=%x",wc.cbWndExtra,cls.cbWndExtra);
ok(wc.hbrBackground == cls.hbrBackground, ok(wc.hbrBackground == cls.hbrBackground,
"hbrBackground did not match %x!=%x",wc.hbrBackground,cls.hbrBackground); "hbrBackground did not match %p!=%p",wc.hbrBackground,cls.hbrBackground);
ok(wc.hCursor== cls.hCursor, ok(wc.hCursor== cls.hCursor,
"hCursor did not match %x!=%x",wc.hCursor,cls.hCursor); "hCursor did not match %p!=%p",wc.hCursor,cls.hCursor);
ok(!wc.hInstance, ok(!wc.hInstance,
"hInstance not zero for global class %x",wc.hInstance); "hInstance not zero for global class %p",wc.hInstance);
} }
else else
ok(FALSE,"GetClassInfo (0) failed for global class!"); ok(FALSE,"GetClassInfo (0) failed for global class!");
......
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