comctl32/tests: Fix the control's size reporting in an error message.

This commit is contained in:
Francois Gouget 2007-10-11 18:33:25 +02:00 committed by Alexandre Julliard
parent 6fc6b23287
commit c76362afdd
1 changed files with 1 additions and 1 deletions

View File

@ -1309,7 +1309,7 @@ static void test_customdraw(void)
GetClientRect(hWndHeader, &rect);
ok(rect.right - rect.left == 670 && rect.bottom - rect.top == 18,
"Tests will fail as header size is %dx%d instead of 670x18\n",
rect.right - rect.left == 670, rect.bottom - rect.top == 18);
rect.right - rect.left, rect.bottom - rect.top);
for (i = 0; i < 3; i++)
{