From 86aa7980165602457fbe7d860fc4cba61b52387f Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Mon, 4 Dec 2006 14:44:33 +0000 Subject: More consts --- cpukit/score/inline/rtems/score/chain.inl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpukit/score/inline/rtems/score/chain.inl') diff --git a/cpukit/score/inline/rtems/score/chain.inl b/cpukit/score/inline/rtems/score/chain.inl index c309c739e2..e47242bf70 100644 --- a/cpukit/score/inline/rtems/score/chain.inl +++ b/cpukit/score/inline/rtems/score/chain.inl @@ -40,8 +40,8 @@ * and FALSE otherwise. */ RTEMS_INLINE_ROUTINE boolean _Chain_Are_nodes_equal( - Chain_Node *left, - Chain_Node *right + const Chain_Node *left, + const Chain_Node *right ) { return left == right; @@ -56,7 +56,7 @@ RTEMS_INLINE_ROUTINE boolean _Chain_Are_nodes_equal( * @return This method returns TRUE if the_chain is NULL and FALSE otherwise. */ RTEMS_INLINE_ROUTINE boolean _Chain_Is_null( - Chain_Control *the_chain + const Chain_Control *the_chain ) { return (the_chain == NULL); -- cgit v1.2.3