summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/rtemstimer.c
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-06 15:16:19 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1996-09-06 15:16:19 +0000
commit7fea679b6f4c376cf068eaee987d3ff4e415b23e (patch)
treebbcdc26257c60b66b264d7b143692104fe4b6757 /cpukit/rtems/src/rtemstimer.c
parentdefault thread attributes: default value for inheritsched changed from (diff)
downloadrtems-7fea679b6f4c376cf068eaee987d3ff4e415b23e.tar.bz2
changed _TOD_Is_set from a function to a boolean variable
Diffstat (limited to 'cpukit/rtems/src/rtemstimer.c')
-rw-r--r--cpukit/rtems/src/rtemstimer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/rtems/src/rtemstimer.c b/cpukit/rtems/src/rtemstimer.c
index 6c3005ffbe..40ee526f26 100644
--- a/cpukit/rtems/src/rtemstimer.c
+++ b/cpukit/rtems/src/rtemstimer.c
@@ -277,7 +277,7 @@ rtems_status_code rtems_timer_fire_when(
Objects_Locations location;
rtems_interval seconds;
- if ( !_TOD_Is_set() )
+ if ( !_TOD_Is_set )
return RTEMS_NOT_DEFINED;
if ( !_TOD_Validate( wall_time ) )