Commit c7becc30 authored by André Hentschel's avatar André Hentschel Committed by Alexandre Julliard

server: Remove dead initializations (clang).

parent 4e06cecf
......@@ -126,7 +126,7 @@ static void handle_table_dump( struct object *obj, int verbose )
{
int i;
struct handle_table *table = (struct handle_table *)obj;
struct handle_entry *entry = table->entries;
struct handle_entry *entry;
assert( obj->ops == &handle_table_ops );
......
......@@ -586,7 +586,7 @@ static int check_wait( struct thread *thread )
{
int i, signaled;
struct thread_wait *wait = thread->wait;
struct wait_queue_entry *entry = wait->queues;
struct wait_queue_entry *entry;
assert( wait );
......
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