summaryrefslogtreecommitdiffstats
path: root/cpukit/posix/src/pspinlock.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-02-03 10:10:57 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-02-03 10:10:57 +0000
commitb1dbfd724bf418ad997d72c68d3683589b53d2d5 (patch)
treef57b43a51d2d32a576577f544a0a4254b1462b9f /cpukit/posix/src/pspinlock.c
parent2009-02-03 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-b1dbfd724bf418ad997d72c68d3683589b53d2d5.tar.bz2
Eliminate TRUE/FALSE.
Diffstat (limited to 'cpukit/posix/src/pspinlock.c')
-rw-r--r--cpukit/posix/src/pspinlock.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/posix/src/pspinlock.c b/cpukit/posix/src/pspinlock.c
index 364549f20c..845117a3e3 100644
--- a/cpukit/posix/src/pspinlock.c
+++ b/cpukit/posix/src/pspinlock.c
@@ -49,7 +49,7 @@ int pthread_spin_lock(
switch ( location ) {
case OBJECTS_LOCAL:
- status = _CORE_spinlock_Wait( &the_spinlock->Spinlock, TRUE, 0 );
+ status = _CORE_spinlock_Wait( &the_spinlock->Spinlock, true, 0 );
_Thread_Enable_dispatch();
return _POSIX_Spinlock_Translate_core_spinlock_return_code( status );