mirror of
https://gitlab.rtems.org/rtems/rtos/rtems.git
synced 2025-12-21 04:14:26 +08:00
pthread_mutexattr_setprioceiling: fixed typo
This commit is contained in:
@@ -551,7 +551,7 @@ int pthread_mutexattr_setprioceiling(
|
||||
if ( !attr || !attr->is_initialized )
|
||||
return EINVAL;
|
||||
|
||||
if ( !_POSIX_Priority_Is_valid( prio_ceiling ) )
|
||||
if ( !_POSIX_Priority_Is_valid( prioceiling ) )
|
||||
return EINVAL;
|
||||
|
||||
attr->prio_ceiling = prioceiling;
|
||||
|
||||
Reference in New Issue
Block a user