fixed wrong return type old vxWorks epicsAtomicUnlock

This commit is contained in:
Jeff Hill
2011-08-30 10:29:56 -06:00
committed by Andrew Johnson
parent f3ca4f1601
commit ad669d6ece
+1 -1
View File
@@ -217,7 +217,7 @@ EPICS_ATOMIC_INLINE void epicsAtomicLock ( EpicsAtomicLockKey * pKey )
pKey->m_key = intLock ();
}
EPICS_ATOMIC_INLINE EpicsAtomicLockKey epicsAtomicUnlock ( EpicsAtomicLockKey * pKey )
EPICS_ATOMIC_INLINE void epicsAtomicUnlock ( EpicsAtomicLockKey * pKey )
{
intUnlock ( pKey->m_key );
}