server: Remove dead initializations (clang).
This commit is contained in:
parent
4e06cecfdd
commit
c7becc3015
|
@ -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 );
|
||||||
|
|
||||||
|
|
|
@ -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 );
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue