Commit cb167e8e authored by Frédéric Delanoy's avatar Frédéric Delanoy Committed by Alexandre Julliard

kernel32/tests: Remove unused variable.

parent 3c1ca4e5
...@@ -42,7 +42,6 @@ struct PROCESS_BASIC_INFORMATION_PRIVATE ...@@ -42,7 +42,6 @@ struct PROCESS_BASIC_INFORMATION_PRIVATE
ULONG_PTR InheritedFromUniqueProcessId; ULONG_PTR InheritedFromUniqueProcessId;
}; };
static BOOL is_child;
static LONG *child_failures; static LONG *child_failures;
static WORD cb_count; static WORD cb_count;
static DWORD page_size; static DWORD page_size;
...@@ -2649,7 +2648,6 @@ START_TEST(loader) ...@@ -2649,7 +2648,6 @@ START_TEST(loader)
child_failures = MapViewOfFile(mapping, FILE_MAP_READ|FILE_MAP_WRITE, 0, 0, 4096); child_failures = MapViewOfFile(mapping, FILE_MAP_READ|FILE_MAP_WRITE, 0, 0, 4096);
if (*child_failures == -1) if (*child_failures == -1)
{ {
is_child = 1;
*child_failures = 0; *child_failures = 0;
} }
else else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment