Commit 1cfa7656 authored by unknown's avatar unknown

BUG#29674 Remove warning in pushbuild in 5.0


ndb/src/ndbapi/NdbDictionaryImpl.cpp:
  Remove warning in pushbuild
parent 073f9508
......@@ -1385,7 +1385,7 @@ NdbDictInterface::parseTableInfo(NdbTableImpl ** ret,
impl->m_replicaCount = replicaCount;
impl->m_fragmentCount = fragCount;
for(i = 0; i<(fragCount*replicaCount); i++)
for(i = 0; i<(Uint32) (fragCount*replicaCount); i++)
{
if (impl->m_fragments.push_back(tableDesc.FragmentData[i+2]))
{
......
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