ntdll: Fix incorrect assignment in assert statement (Coverity).

This commit is contained in:
Sebastian Lackner 2015-07-11 15:33:04 +02:00 committed by Alexandre Julliard
parent 744f7b69bf
commit b687fee66f
1 changed files with 1 additions and 1 deletions

View File

@ -1598,7 +1598,7 @@ static NTSTATUS tp_waitqueue_lock( struct threadpool_object *wait )
struct waitqueue_bucket *bucket;
NTSTATUS status;
HANDLE thread;
assert( wait->type = TP_OBJECT_TYPE_WAIT );
assert( wait->type == TP_OBJECT_TYPE_WAIT );
wait->u.wait.signaled = 0;
wait->u.wait.bucket = NULL;