From 2860ca9b5155fec08d9f1cf3478822dc11891f50 Mon Sep 17 00:00:00 2001 From: Jeff Hill Date: Wed, 30 Oct 2002 00:51:12 +0000 Subject: [PATCH] fixed problem introduced by warning fix --- src/libCom/cxxTemplates/resourceLib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libCom/cxxTemplates/resourceLib.h b/src/libCom/cxxTemplates/resourceLib.h index 61e6f6d83..88c6809c5 100644 --- a/src/libCom/cxxTemplates/resourceLib.h +++ b/src/libCom/cxxTemplates/resourceLib.h @@ -431,7 +431,7 @@ void resTable::verify () const if ( this->pTable ) { assert ( this->nextSplitIndex <= this->hashIxMask + 1 ); assert ( this->hashIxMask ); - assert ( ( this->hashIxMask == this->hashIxSplitMask ) >> 1 ); + assert ( this->hashIxMask == ( this->hashIxSplitMask >> 1 ) ); assert ( this->hashIxSplitMask ); assert ( this->nBitsHashIxSplitMask ); assert ( resTableBitMask ( this->nBitsHashIxSplitMask )