summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/ratemongetstatus.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/rtems/src/ratemongetstatus.c')
-rw-r--r--cpukit/rtems/src/ratemongetstatus.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/rtems/src/ratemongetstatus.c b/cpukit/rtems/src/ratemongetstatus.c
index aea428d2d1..8fc003f7e4 100644
--- a/cpukit/rtems/src/ratemongetstatus.c
+++ b/cpukit/rtems/src/ratemongetstatus.c
@@ -1,7 +1,7 @@
/*
* Rate Monotonic Manager -- Get Status
*
- * COPYRIGHT (c) 1989-2007.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -65,7 +65,7 @@ rtems_status_code rtems_rate_monotonic_get_status(
switch ( location ) {
case OBJECTS_LOCAL:
- status->owner = ((the_period->owner) ? the_period->owner->Object.id : 0);
+ status->owner = the_period->owner->Object.id;
status->state = the_period->state;
if ( status->state == RATE_MONOTONIC_INACTIVE ) {