diff options
Diffstat (limited to 'base/lock_impl_win.cc')
-rw-r--r-- | base/lock_impl_win.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/base/lock_impl_win.cc b/base/lock_impl_win.cc index 0d1ac93..0f0e424 100644 --- a/base/lock_impl_win.cc +++ b/base/lock_impl_win.cc @@ -1,4 +1,4 @@ -// Copyright (c) 2010 The Chromium Authors. All rights reserved. +// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. @@ -29,7 +29,7 @@ bool LockImpl::Try() { #ifndef NDEBUG // ONLY access data after locking. owning_thread_id_ = PlatformThread::CurrentId(); - DCHECK_NE(owning_thread_id_, 0u); + DCHECK_NE(owning_thread_id_, 0); recursion_count_shadow_++; if (2 == recursion_count_shadow_ && !recursion_used_) { recursion_used_ = true; @@ -46,7 +46,7 @@ void LockImpl::Lock() { #ifndef NDEBUG // ONLY access data after locking. owning_thread_id_ = PlatformThread::CurrentId(); - DCHECK_NE(owning_thread_id_, 0u); + DCHECK_NE(owning_thread_id_, 0); recursion_count_shadow_++; if (2 == recursion_count_shadow_ && !recursion_used_) { recursion_used_ = true; |