Index: base/path_service.cc |
diff --git a/base/path_service.cc b/base/path_service.cc |
index 1262f68531eabfc36de3465e58eb5bf4b0d08a13..e72ae7deff9af69156ab2ed994de7431009ca5d8 100644 |
--- a/base/path_service.cc |
+++ b/base/path_service.cc |
@@ -1,4 +1,4 @@ |
-// Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. |
+// Copyright (c) 2011 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. |
@@ -171,7 +171,7 @@ bool PathService::Get(int key, FilePath* result) { |
PathData* path_data = GetPathData(); |
DCHECK(path_data); |
DCHECK(result); |
- DCHECK(key >= base::DIR_CURRENT); |
+ DCHECK_GE(key, base::DIR_CURRENT); |
// special case the current directory because it can never be cached |
if (key == base::DIR_CURRENT) |