Index: base/path_service.cc |
diff --git a/base/path_service.cc b/base/path_service.cc |
index 1262f68531eabfc36de3465e58eb5bf4b0d08a13..ce6f025d2f536c214a97890c51fd7814edb5f158 100644 |
--- a/base/path_service.cc |
+++ b/base/path_service.cc |
@@ -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) |