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.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/sapi/src/debug.c b/cpukit/sapi/src/debug.c
index 905280ef2c..6cd6dba801 100644
--- a/cpukit/sapi/src/debug.c
+++ b/cpukit/sapi/src/debug.c
@@ -61,5 +61,5 @@ boolean _Debug_Is_enabled(
rtems_debug_control level
)
{
- return (_Debug_Level & level);
+ return (_Debug_Level & level) ? TRUE : FALSE;
}