fixed inconsistent signed vs unsigned for thread priority

This commit is contained in:
Jeff Hill
2001-10-03 18:45:32 +00:00
parent 475e16ec96
commit 659c60fd90
4 changed files with 6 additions and 6 deletions

View File

@@ -35,7 +35,7 @@ timerQueueActiveMgr queueMgr;
epicsTimerQueueActive::~epicsTimerQueueActive () {}
epicsTimerQueueActive &epicsTimerQueueActive::allocate ( bool okToShare, int threadPriority )
epicsTimerQueueActive &epicsTimerQueueActive::allocate ( bool okToShare, unsigned threadPriority )
{
return queueMgr.allocate ( okToShare, threadPriority );
}