Index: blimp/helium/version_vector.cc |
diff --git a/blimp/helium/version_vector.cc b/blimp/helium/version_vector.cc |
index 4ccaefc49d3cf3df57e985966918abbf103f095b..85e085129c428695c7e5e6083c5a1c6474495773 100644 |
--- a/blimp/helium/version_vector.cc |
+++ b/blimp/helium/version_vector.cc |
@@ -18,7 +18,7 @@ VersionVector::VersionVector(Revision local_revision, Revision remote_revision) |
VersionVector::Comparison VersionVector::CompareTo( |
const VersionVector& other) const { |
- DCHECK(local_revision_ >= other.local_revision()); |
+ DCHECK_GE(local_revision_, other.local_revision()); |
if (local_revision_ == other.local_revision()) { |
if (remote_revision_ == other.remote_revision()) { |