pthread_mutexattr_setprioceiling: fixed typo

This commit is contained in:
Joel Sherrill
1996-08-12 17:04:13 +00:00
parent db8e901180
commit f126ae2a86
2 changed files with 2 additions and 2 deletions

View File

@@ -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;