summaryrefslogtreecommitdiffstats
path: root/cpukit/itron/src/chg_pri.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-11-03 05:23:05 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-11-03 05:23:05 +0000
commit9d2df2b3e1c8cc83769dd795698662f4c610f600 (patch)
treeb2097601a4d9fb3376ebe4dc16c16a030f62a317 /cpukit/itron/src/chg_pri.c
parent2009-01-03 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-9d2df2b3e1c8cc83769dd795698662f4c610f600.tar.bz2
Eliminate TRUE/FALSE in favor of true/false.
Diffstat (limited to 'cpukit/itron/src/chg_pri.c')
-rw-r--r--cpukit/itron/src/chg_pri.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/itron/src/chg_pri.c b/cpukit/itron/src/chg_pri.c
index d47d17cafc..0a29128959 100644
--- a/cpukit/itron/src/chg_pri.c
+++ b/cpukit/itron/src/chg_pri.c
@@ -61,7 +61,7 @@ ER chg_pri(
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 );
break;
}