kernel32/tests: Fix compilation on systems that don't support nameless unions.

This commit is contained in:
Francois Gouget 2008-09-20 13:26:20 +02:00 committed by Alexandre Julliard
parent 055e6bfb63
commit 7af03a041a
1 changed files with 1 additions and 1 deletions

View File

@ -526,7 +526,7 @@ static void test_ImportDescriptors(void)
LPCSTR module_name = (LPCSTR) RVAToAddr(
import_chunk->Name, kernel32_module);
PIMAGE_THUNK_DATA name_table = (PIMAGE_THUNK_DATA) RVAToAddr(
import_chunk->OriginalFirstThunk, kernel32_module);
U(*import_chunk).OriginalFirstThunk, kernel32_module);
PIMAGE_THUNK_DATA iat = (PIMAGE_THUNK_DATA) RVAToAddr(
import_chunk->FirstThunk, kernel32_module);
ok(module_name != NULL, "Imported module name should not be NULL\n");