Normalize unsigned int to just unsigned.

This commit is contained in:
Markus Armbruster 2006-04-30 12:26:07 +00:00
parent e09e6e587b
commit e28851b8e9
8 changed files with 13 additions and 17 deletions

View file

@ -332,7 +332,7 @@ empth_threadMain(void *pvData)
/* seed the rand() function */
time(&now);
srand(now ^ (unsigned int)pThread);
srand(now ^ (unsigned)pThread);
/* Switch to this thread context */
loc_RunThisThread();