compile error fix

parent 9fb87a77
...@@ -626,7 +626,7 @@ NdbEventImpl::addTableEvent(const NdbDictionary::Event::TableEvent t = NdbDicti ...@@ -626,7 +626,7 @@ NdbEventImpl::addTableEvent(const NdbDictionary::Event::TableEvent t = NdbDicti
} }
void void
NdbEventImpl::setDurability(const NdbDictionary::Event::EventDurability d) NdbEventImpl::setDurability(NdbDictionary::Event::EventDurability d)
{ {
m_dur = d; m_dur = d;
} }
...@@ -1361,7 +1361,7 @@ NdbDictInterface::parseTableInfo(NdbTableImpl ** ret, ...@@ -1361,7 +1361,7 @@ NdbDictInterface::parseTableInfo(NdbTableImpl ** ret,
} }
Uint32 topBit = (1 << 31); Uint32 topBit = (1 << 31);
for(int i = 31; i>=0; i--){ for(i = 31; i>=0; i--){
if((fragCount & topBit) != 0) if((fragCount & topBit) != 0)
break; break;
topBit >>= 1; topBit >>= 1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment