Commit 3842b1df authored by unknown's avatar unknown

compile error fix

parent 5c594201
......@@ -626,7 +626,7 @@ NdbEventImpl::addTableEvent(const NdbDictionary::Event::TableEvent t = NdbDicti
}
void
NdbEventImpl::setDurability(const NdbDictionary::Event::EventDurability d)
NdbEventImpl::setDurability(NdbDictionary::Event::EventDurability d)
{
m_dur = d;
}
......@@ -1361,7 +1361,7 @@ NdbDictInterface::parseTableInfo(NdbTableImpl ** ret,
}
Uint32 topBit = (1 << 31);
for(int i = 31; i>=0; i--){
for(i = 31; i>=0; i--){
if((fragCount & topBit) != 0)
break;
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