Add missing word in comment.

git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33479 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Michael Lotz 2009-10-07 13:29:19 +00:00
parent 3c9dd7d78f
commit 0b4d87da22

View File

@ -173,7 +173,7 @@ rw_lock_wait(rw_lock* lock, bool writer)
static void
rw_lock_unblock(rw_lock* lock)
{
// Check whether there any waiting threads at all and whether anyone
// Check whether there are any waiting threads at all and whether anyone
// has the write lock.
rw_lock_waiter* waiter = lock->waiters;
if (waiter == NULL || lock->holder > 0)