summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pthreadequal.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/pthreadequal.c')
-rw-r--r--cpukit/posix/src/pthreadequal.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/posix/src/pthreadequal.c b/cpukit/posix/src/pthreadequal.c
index 5fbe0c4f5e..9944026f3e 100644
--- a/cpukit/posix/src/pthreadequal.c
+++ b/cpukit/posix/src/pthreadequal.c
@@ -51,7 +51,7 @@ int pthread_equal(
* Validate the first id and return 0 if it is not valid
*/
- (void) _POSIX_Threads_Get( t1, &location );
+ (void) _Thread_Get( t1, &location );
switch ( location ) {
case OBJECTS_LOCAL:
@@ -60,7 +60,7 @@ int pthread_equal(
* Validate the second id and return 0 if it is not valid
*/
- (void) _POSIX_Threads_Get( t2, &location );
+ (void) _Thread_Get( t2, &location );
switch ( location ) {
case OBJECTS_LOCAL: