summaryrefslogtreecommitdiffstats
path: root/cpukit/sapi/src/debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/sapi/src/debug.c')
-rw-r--r--cpukit/sapi/src/debug.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpukit/sapi/src/debug.c b/cpukit/sapi/src/debug.c
index 6cd6dba801..38e05c9982 100644
--- a/cpukit/sapi/src/debug.c
+++ b/cpukit/sapi/src/debug.c
@@ -57,9 +57,9 @@ void rtems_debug_disable (
* _Debug_Is_enabled
*/
-boolean _Debug_Is_enabled(
+bool _Debug_Is_enabled(
rtems_debug_control level
)
{
- return (_Debug_Level & level) ? TRUE : FALSE;
+ return (_Debug_Level & level) ? true : false;
}