server: Remove dead initializations (clang).

This commit is contained in:
André Hentschel 2011-07-05 21:38:01 +02:00 committed by Alexandre Julliard
parent 4e06cecfdd
commit c7becc3015
2 changed files with 2 additions and 2 deletions

View File

@ -126,7 +126,7 @@ static void handle_table_dump( struct object *obj, int verbose )
{ {
int i; int i;
struct handle_table *table = (struct handle_table *)obj; struct handle_table *table = (struct handle_table *)obj;
struct handle_entry *entry = table->entries; struct handle_entry *entry;
assert( obj->ops == &handle_table_ops ); assert( obj->ops == &handle_table_ops );

View File

@ -586,7 +586,7 @@ static int check_wait( struct thread *thread )
{ {
int i, signaled; int i, signaled;
struct thread_wait *wait = thread->wait; struct thread_wait *wait = thread->wait;
struct wait_queue_entry *entry = wait->queues; struct wait_queue_entry *entry;
assert( wait ); assert( wait );