summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/timercreate.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/posix/src/timercreate.c')
-rw-r--r--cpukit/posix/src/timercreate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/timercreate.c b/cpukit/posix/src/timercreate.c
index 90cb9b0f8b..da4fe3641c 100644
--- a/cpukit/posix/src/timercreate.c
+++ b/cpukit/posix/src/timercreate.c
@@ -89,7 +89,7 @@ int timer_create(
ptimer->timer_data.it_interval.tv_nsec = 0;
_Watchdog_Initialize( &ptimer->Timer, NULL, 0, NULL );
- _Objects_Open(&_POSIX_Timer_Information, &ptimer->Object, (Objects_Name) 0);
+ _Objects_Open_u32(&_POSIX_Timer_Information, &ptimer->Object, 0);
*timerid = ptimer->Object.id;
_Thread_Enable_dispatch();