summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/chdir.c
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2004-04-18 06:05:35 +0000
commit50f32b11653429546d7b8ff2693b5232b885e201 (patch)
treea8821a7e3025ef47082cc21ccbb56551382cdc3f /cpukit/libcsupport/src/chdir.c
parentRemove stray white spaces. (diff)
downloadrtems-50f32b11653429546d7b8ff2693b5232b885e201.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/libcsupport/src/chdir.c')
-rw-r--r--cpukit/libcsupport/src/chdir.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/libcsupport/src/chdir.c b/cpukit/libcsupport/src/chdir.c
index ab9811a59a..b508ea20ed 100644
--- a/cpukit/libcsupport/src/chdir.c
+++ b/cpukit/libcsupport/src/chdir.c
@@ -1,4 +1,4 @@
-/*
+/*
* chdir() - POSIX 1003.1b - 5.2.1 - Change Current Working Directory
*
* COPYRIGHT (c) 1989-1999.
@@ -34,7 +34,7 @@ int chdir(
* Get the node where we wish to go.
*/
- result = rtems_filesystem_evaluate_path(
+ result = rtems_filesystem_evaluate_path(
pathname, RTEMS_LIBIO_PERMS_SEARCH, &loc, TRUE );
if ( result != 0 )
return -1;
@@ -52,10 +52,10 @@ int chdir(
rtems_filesystem_freenode( &loc );
rtems_set_errno_and_return_minus_one( ENOTDIR );
}
-
+
rtems_filesystem_freenode( &rtems_filesystem_current );
-
+
rtems_filesystem_current = loc;
-
+
return 0;
}