summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs/src/imfs/imfs_debug.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libfs/src/imfs/imfs_debug.c')
-rw-r--r--cpukit/libfs/src/imfs/imfs_debug.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libfs/src/imfs/imfs_debug.c b/cpukit/libfs/src/imfs/imfs_debug.c
index 8b53aea1d6..d766c5e8b1 100644
--- a/cpukit/libfs/src/imfs/imfs_debug.c
+++ b/cpukit/libfs/src/imfs/imfs_debug.c
@@ -119,8 +119,8 @@ void IMFS_dump_directory(
int level
)
{
- Chain_Node *the_node;
- Chain_Control *the_chain;
+ rtems_chain_node *the_node;
+ rtems_chain_control *the_chain;
IMFS_jnode_t *the_jnode;
int i;
@@ -133,7 +133,7 @@ void IMFS_dump_directory(
the_chain = &the_directory->info.directory.Entries;
for ( the_node = the_chain->first;
- !_Chain_Is_tail( the_chain, the_node );
+ !rtems_chain_is_tail( the_chain, the_node );
the_node = the_node->next ) {
the_jnode = (IMFS_jnode_t *) the_node;