summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/eval.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/eval.c
parentRemove stray white spaces. (diff)
downloadrtems-50f32b11653429546d7b8ff2693b5232b885e201.tar.bz2
Remove stray white spaces.
Diffstat (limited to 'cpukit/libcsupport/src/eval.c')
-rw-r--r--cpukit/libcsupport/src/eval.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/cpukit/libcsupport/src/eval.c b/cpukit/libcsupport/src/eval.c
index f80753fd25..7c9c0a7e47 100644
--- a/cpukit/libcsupport/src/eval.c
+++ b/cpukit/libcsupport/src/eval.c
@@ -41,7 +41,7 @@ int rtems_filesystem_evaluate_path(
if ( !pathloc )
rtems_set_errno_and_return_minus_one( EIO ); /* should never happen */
-
+
/*
* Evaluate the path using the optable evalpath.
*/
@@ -80,7 +80,7 @@ int rtems_filesystem_evaluate_path(
* Let the FS implementation deal with this case. It
* should probably free pathloc in either case:
* - if the link evaluation fails, it must free the
- * original (valid) pathloc because we are going
+ * original (valid) pathloc because we are going
* to return -1 and hence the FS generics won't
* cleanup pathloc.
* - if the link evaluation is successful, the updated
@@ -90,7 +90,7 @@ int rtems_filesystem_evaluate_path(
*/
result = (*pathloc->ops->eval_link_h)( pathloc, flags );
-
+
}
}
@@ -108,7 +108,7 @@ int rtems_filesystem_evaluate_parent(
if ( !pathloc )
rtems_set_errno_and_return_minus_one( EIO ); /* should never happen */
-
+
if ( !pathloc->ops->evalpath_h )
rtems_set_errno_and_return_minus_one( ENOTSUP );