kernel32: Fix a typo in the LoadLibrary return value testing.

This commit is contained in:
Dmitry Timoshkov 2011-09-30 20:06:02 +09:00 committed by Alexandre Julliard
parent 3ba00cf538
commit 25ae02b4ed
1 changed files with 1 additions and 1 deletions

View File

@ -662,7 +662,7 @@ static void test_section_access(void)
SetLastError(0xdeadbeef);
hlib = LoadLibrary(dll_name);
ok(ret, "LoadLibrary error %d\n", GetLastError());
ok(hlib != 0, "LoadLibrary error %d\n", GetLastError());
size = VirtualQuery((char *)hlib + section.VirtualAddress, &info, sizeof(info));
ok(size == sizeof(info),