summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/unlink.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 11:42:19 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2008-09-01 11:42:19 +0000
commit4088d01d9f037d26365d462fa243561da8cd8cb1 (patch)
tree09c49db259194ed146ef51d086e6cb142e63fb1b /cpukit/libcsupport/src/unlink.c
parent2008-09-01 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-4088d01d9f037d26365d462fa243561da8cd8cb1.tar.bz2
Convert using "bool".
Diffstat (limited to 'cpukit/libcsupport/src/unlink.c')
-rw-r--r--cpukit/libcsupport/src/unlink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/unlink.c b/cpukit/libcsupport/src/unlink.c
index b4fb6cbab1..a441d4d6ec 100644
--- a/cpukit/libcsupport/src/unlink.c
+++ b/cpukit/libcsupport/src/unlink.c
@@ -31,7 +31,7 @@ int unlink(
* Get the node to be unlinked.
*/
- result = rtems_filesystem_evaluate_path( path, 0, &loc, FALSE );
+ result = rtems_filesystem_evaluate_path( path, 0, &loc, false );
if ( result != 0 )
return -1;