Change "done" to bool.

This commit is contained in:
Ralf Corsepius
2008-09-04 08:16:49 +00:00
parent 92ba0a51e6
commit 88d1c65935

View File

@@ -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;