summaryrefslogtreecommitdiff
path: root/cpukit/libcsupport/src/rmdir.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-11-29 13:35:32 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-11-29 13:35:32 +0000
commit18daff9b95bbe4d5004a99079207a5343760ecd3 (patch)
treeb964869a341cda8ab268ae3643ea9be3ed1a78f4 /cpukit/libcsupport/src/rmdir.c
parent0a7278e49713596cd0d4b7e2d071e40a6940746f (diff)
Whitespace removal.
Diffstat (limited to 'cpukit/libcsupport/src/rmdir.c')
-rw-r--r--cpukit/libcsupport/src/rmdir.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpukit/libcsupport/src/rmdir.c b/cpukit/libcsupport/src/rmdir.c
index ca0129fd3b..b66837e115 100644
--- a/cpukit/libcsupport/src/rmdir.c
+++ b/cpukit/libcsupport/src/rmdir.c
@@ -34,7 +34,7 @@ int rmdir(
rtems_filesystem_location_info_t loc;
int i;
int result;
-
+
/*
* Get the parent node of the node we wish to remove. Find the parent path.
*/
@@ -55,11 +55,11 @@ int rmdir(
/*
* Start from the parent to find the node that should be under it.
*/
-
+
loc = parentloc;
name = pathname + parentpathlen;
name += rtems_filesystem_prefix_separators( name, strlen( name ) );
-
+
result = rtems_filesystem_evaluate_relative_path( name , strlen( name ),
0, &loc, false );
if ( result != 0 ) {