Various fixes made in the utility code for Solaris.

git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@427 0109f412-320b-0410-ab79-c3e0c5ffbbe6
This commit is contained in:
ahodgkinson
2006-05-19 19:45:40 +00:00
parent 2a358dbf57
commit b98d12ca82
9 changed files with 118 additions and 126 deletions

View File

@@ -504,7 +504,7 @@ Desc:
*****************************************************************************/
RCODE FlmThreadContext::setup(
FlmSharedContext * pSharedContext,
char * pszThreadName,
const char * pszThreadName,
THREAD_FUNC_p pFunc,
void * pvAppData)
{
@@ -1435,7 +1435,7 @@ void scramble(
for( uiLoop = 0; uiLoop < uiNumElems; uiLoop++)
{
uiIndex = pRandGen->getUINT32( 0, uiNumElems - 1);
uiIndex = pRandGen->getUINT32( 0, (FLMUINT32)(uiNumElems - 1));
f_swap(
puiArray[uiLoop],
puiArray[uiIndex],