fixed sunpro warning

This commit is contained in:
Jeff Hill
2002-09-20 17:33:10 +00:00
parent a37ff40ce8
commit 03717d7944
2 changed files with 4 additions and 4 deletions

View File

@@ -64,7 +64,7 @@ void beaconAnomalyGovernor::start ()
}
}
epicsTimerNotify::expireStatus beaconAnomalyGovernor::expire ( const epicsTime & currentTime )
epicsTimerNotify::expireStatus beaconAnomalyGovernor::expire ( const epicsTime & )
{
if ( this->anomalyPending ) {
this->anomalyPending = false;

View File

@@ -48,10 +48,10 @@ bool gddEnumStringTable::expand ( unsigned nStringsRequired )
}
}
void gddEnumStringTable::reserve ( unsigned nStrings )
void gddEnumStringTable::reserve ( unsigned nStringsIn )
{
if ( nStrings > this->nStringSlots ) {
this->expand ( nStrings );
if ( nStringsIn > this->nStringSlots ) {
this->expand ( nStringsIn );
}
}