version/tests: Check the correct variable.

This commit is contained in:
Michael Stefaniuc 2012-05-15 10:12:39 +02:00 committed by Alexandre Julliard
parent 4b32c09376
commit d8bc018487
1 changed files with 1 additions and 1 deletions

View File

@ -412,7 +412,7 @@ static void test_32bit_win(void)
retW = VerQueryValueW( pVersionInfoW, rootW, (LPVOID *)&pBufW, &uiLengthW );
ok (retW, "VerQueryValueW failed: GetLastError = %u\n", GetLastError());
ok ( uiLengthA == sizeof(VS_FIXEDFILEINFO), "Size (%d) doesn't match the size of the VS_FIXEDFILEINFO struct\n", uiLengthA);
ok ( uiLengthW == sizeof(VS_FIXEDFILEINFO), "Size (%d) doesn't match the size of the VS_FIXEDFILEINFO struct\n", uiLengthW );
ok( uiLengthA == uiLengthW, "The size of VS_FIXEDFILEINFO should be the same for both A/W calls, it is (%d) vs. (%d)\n",
uiLengthA, uiLengthW);