mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 22:20:26 +00:00
kernel32/tests: Fix compilation on systems that don't support nameless unions.
This commit is contained in:
parent
055e6bfb63
commit
7af03a041a
@ -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");
|
||||
|
Loading…
Reference in New Issue
Block a user