FLAIM changes. Fixed NetWare compiler warnings.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@707 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-07-25 15:08:03 +00:00
parent 30b1f8fcc8
commit 2dad3b3c41

View File

@@ -656,14 +656,15 @@ Transmission_Error:
case FDB_RFL_FOOTPRINT_SIZE:
{
pFile->uiRflFootprintSize = f_roundUp( (FLMUINT)pvValue1, 512);
pFile->uiRflFootprintSize =
(FLMUINT)f_roundUp( (FLMUINT)pvValue1, 512);
break;
}
case FDB_RBL_FOOTPRINT_SIZE:
{
pFile->uiRblFootprintSize = f_roundUp( (FLMUINT)pvValue1,
pFile->FileHdr.uiBlockSize);
pFile->uiRblFootprintSize =
(FLMUINT)f_roundUp( (FLMUINT)pvValue1, pFile->FileHdr.uiBlockSize);
break;
}