summaryrefslogtreecommitdiffstats
path: root/cpukit/rtems/include/rtems/rtems/region.h
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-12-23 05:06:37 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-12-23 05:06:37 +0000
commit997bc7f4153569ac282ffc035f1c8a4e54d0e08a (patch)
treeac7e225eed2d2c298b590ef824020b2c7d4a2620 /cpukit/rtems/include/rtems/rtems/region.h
parent2008-12-23 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-997bc7f4153569ac282ffc035f1c8a4e54d0e08a.tar.bz2
Eliminate TRUE/FALSE.
Diffstat (limited to '')
-rw-r--r--cpukit/rtems/include/rtems/rtems/region.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/rtems/include/rtems/rtems/region.h b/cpukit/rtems/include/rtems/rtems/region.h
index 34be2518d6..0a2e804bc2 100644
--- a/cpukit/rtems/include/rtems/rtems/region.h
+++ b/cpukit/rtems/include/rtems/rtems/region.h
@@ -273,7 +273,7 @@ extern void _Region_Process_queue(Region_Control *the_region);
#define _Region_Debug_Walk( _the_region, _source ) \
do { \
if ( _Debug_Is_enabled( RTEMS_DEBUG_REGION ) ) \
- _Heap_Walk( &(_the_region)->Memory, _source, FALSE ); \
+ _Heap_Walk( &(_the_region)->Memory, _source, false ); \
} while ( 0 )
#else