Added typecasts for Solaris.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@209 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-03-23 22:51:01 +00:00
parent adb3b66d95
commit a060eb3330
12 changed files with 18 additions and 18 deletions

View File

@@ -159,7 +159,7 @@ RCODE FSBtSearchEnd(
goto Exit;
}
flmUINT32ToBigEndian( uiDrn, key);
flmUINT32ToBigEndian( (FLMUINT32)uiDrn, key);
for(;;)
{
pStack->uiFlags = FULL_STACK;
@@ -582,7 +582,7 @@ RCODE FSBtScanNonLeafData(
// Set curElm and the key buffer.
pStack->uiCurElm = BH_OVHD + (uiMid << 3);
flmUINT32ToBigEndian( uiCurDrn, pStack->pKeyBuf);
flmUINT32ToBigEndian( (FLMUINT32)uiCurDrn, pStack->pKeyBuf);
//Exit:
return( rc);