Skip to content
Snippets Groups Projects
Commit c7becc30 authored by André Zwing's avatar André Zwing Committed by Alexandre Julliard
Browse files

server: Remove dead initializations (clang).

parent 4e06cecf
No related branches found
No related tags found
No related merge requests found
......@@ -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 );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment