summaryrefslogtreecommitdiff
path: root/cpukit/include/rtems/chain.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/include/rtems/chain.h')
-rw-r--r--cpukit/include/rtems/chain.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/include/rtems/chain.h b/cpukit/include/rtems/chain.h
index 11ebdca322..25ea0b23b7 100644
--- a/cpukit/include/rtems/chain.h
+++ b/cpukit/include/rtems/chain.h
@@ -234,7 +234,7 @@ RTEMS_INLINE_ROUTINE bool rtems_chain_is_null_node(
const rtems_chain_node *the_node
)
{
- return _Chain_Is_null_node( the_node );
+ return the_node == NULL;
}
/**