From 88d1c659357908e6943c6c6c922b1e03c7a82c0e Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 4 Sep 2008 08:16:49 +0000 Subject: Change "done" to bool. --- cpukit/libfs/src/imfs/imfs_eval.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cpukit/libfs') diff --git a/cpukit/libfs/src/imfs/imfs_eval.c b/cpukit/libfs/src/imfs/imfs_eval.c index 3d8df0b2e0..9d8328d3a5 100644 --- a/cpukit/libfs/src/imfs/imfs_eval.c +++ b/cpukit/libfs/src/imfs/imfs_eval.c @@ -289,7 +289,7 @@ int IMFS_evaluate_for_make( char token[ IMFS_NAME_MAX + 1 ]; rtems_filesystem_location_info_t newloc; IMFS_jnode_t *node; - int done = 0; + bool done = false; int result; /* @@ -411,7 +411,7 @@ int IMFS_evaluate_for_make( */ if ( ! node ) - done = TRUE; + done = true; else pathloc->node_access = node; -- cgit v1.2.3