summaryrefslogtreecommitdiffstats
path: root/cpukit/libfs
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>2010-01-18 18:20:28 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>2010-01-18 18:20:28 +0000
commitabf9ea0c4e6084562bd2b8502864e9e3d4621458 (patch)
treeb842dec6e5baf728baf4af2868e26aae6b776201 /cpukit/libfs
parentThis commit was generated by cvs2svn to compensate for changes in r22574, (diff)
downloadrtems-abf9ea0c4e6084562bd2b8502864e9e3d4621458.tar.bz2
2010-01-18 Joel Sherrill <joel.sherrill@oarcorp.com>
* libfs/src/imfs/imfs_symlink.c: Spacing.
Diffstat (limited to 'cpukit/libfs')
-rw-r--r--cpukit/libfs/src/imfs/imfs_symlink.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/cpukit/libfs/src/imfs/imfs_symlink.c b/cpukit/libfs/src/imfs/imfs_symlink.c
index 36a52e50fb..d82a67d46f 100644
--- a/cpukit/libfs/src/imfs/imfs_symlink.c
+++ b/cpukit/libfs/src/imfs/imfs_symlink.c
@@ -5,7 +5,7 @@
* with the name given in name. The node is set to point to the node at
* to_loc.
*
- * COPYRIGHT (c) 1989-1999.
+ * COPYRIGHT (c) 1989-2009.
* On-Line Applications Research Corporation (OAR).
*
* The license and distribution terms for this file may be
@@ -47,9 +47,9 @@ int IMFS_symlink(
* Duplicate link name
*/
- info.sym_link.name = strdup( link_name);
+ info.sym_link.name = strdup(link_name);
if (info.sym_link.name == NULL) {
- rtems_set_errno_and_return_minus_one( ENOMEM);
+ rtems_set_errno_and_return_minus_one(ENOMEM);
}
/*
@@ -65,8 +65,8 @@ int IMFS_symlink(
);
if (new_node == NULL) {
- free( info.sym_link.name);
- rtems_set_errno_and_return_minus_one( ENOMEM);
+ free(info.sym_link.name);
+ rtems_set_errno_and_return_minus_one(ENOMEM);
}
return 0;