summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/src/tasksetpriority.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-01-06 05:05:03 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-01-06 05:05:03 +0000
commiteaef4657ac140fd13b67a3ab88703f5d3b5cf74e (patch)
treeb2eb2a7d6fa1346bfec8563229824a0c13f5b61f /cpukit/rtems/src/tasksetpriority.c
parent2009-01-05 Joel Sherrill <joel.sherrill@oarcorp.com> (diff)
downloadrtems-eaef4657ac140fd13b67a3ab88703f5d3b5cf74e.tar.bz2
Eliminate TRUE/FALSE.
Diffstat (limited to 'cpukit/rtems/src/tasksetpriority.c')
-rw-r--r--cpukit/rtems/src/tasksetpriority.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/rtems/src/tasksetpriority.c b/cpukit/rtems/src/tasksetpriority.c
index 9d9567e65e..3b1493bdf2 100644
--- a/cpukit/rtems/src/tasksetpriority.c
+++ b/cpukit/rtems/src/tasksetpriority.c
@@ -77,7 +77,7 @@ rtems_status_code rtems_task_set_priority(
the_thread->real_priority = new_priority;
if ( the_thread->resource_count == 0 ||
the_thread->current_priority > new_priority )
- _Thread_Change_priority( the_thread, new_priority, FALSE );
+ _Thread_Change_priority( the_thread, new_priority, false );
}
_Thread_Enable_dispatch();
return RTEMS_SUCCESSFUL;