diff options
Diffstat (limited to 'cpp/src/IceGrid/NodeI.cpp')
-rw-r--r-- | cpp/src/IceGrid/NodeI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/IceGrid/NodeI.cpp b/cpp/src/IceGrid/NodeI.cpp index ad89ae511b6..8c590aff38d 100644 --- a/cpp/src/IceGrid/NodeI.cpp +++ b/cpp/src/IceGrid/NodeI.cpp @@ -780,7 +780,7 @@ NodeI::checkConsistencyNoSync(const Ice::StringSeq& servers) try { Ice::StringSeq::const_iterator p; - for(p = contents.begin(); p != contents.end()-1; ++p) + for(p = contents.begin(); p != (contents.end() - 1); ++p) { rename(_tmpDir + "/" + *(p + 1), _tmpDir + "/" + *p); } |