From 57507b03ef70b66df8835758b21c628cea593765 Mon Sep 17 00:00:00 2001 From: Alberto Lerner Date: Sat, 23 Oct 2010 10:08:32 -0400 Subject: [PATCH] correct message this time --- s/chunk.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/s/chunk.cpp b/s/chunk.cpp index c6ab2fe0491..3a181d4fe52 100644 --- a/s/chunk.cpp +++ b/s/chunk.cpp @@ -279,7 +279,7 @@ namespace mongo { // sanity check. if ( splitPoint.empty() || _min == splitPoint.front() || _max == splitPoint.front() ) { log() << "want to split chunk, but can't find split point chunk " << toString() - << " got: " << ( true ? "" : splitPoint.front().toString() ) << endl; + << " got: " << ( splitPoint.empty() ? "" : splitPoint.front().toString() ) << endl; return ChunkPtr(); }