summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/link.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2012-10-07 17:17:27 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2012-10-07 17:17:27 +0200
commit78f417f897fddb0fd78af81cfcefca5a44a7d1c5 (patch)
tree6afee18d3bc8c6177c51368f4dbbf37fbc35bbb8 /cpukit/libcsupport/src/link.c
parentFilesystem: Rename function (diff)
downloadrtems-78f417f897fddb0fd78af81cfcefca5a44a7d1c5.tar.bz2
Filesystem: Rename function
Rename rtems_filesystem_location_exists_in_same_fs_instance_as() into rtems_filesystem_location_exists_in_same_instance_as() for consistency with other file system instance related functions.
Diffstat (limited to 'cpukit/libcsupport/src/link.c')
-rw-r--r--cpukit/libcsupport/src/link.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/link.c b/cpukit/libcsupport/src/link.c
index c16e7a018e..f49cca2302 100644
--- a/cpukit/libcsupport/src/link.c
+++ b/cpukit/libcsupport/src/link.c
@@ -31,7 +31,7 @@ int link( const char *path1, const char *path2 )
const rtems_filesystem_location_info_t *currentloc_2 =
rtems_filesystem_eval_path_start( &ctx_2, path2, eval_flags_2 );
- rv = rtems_filesystem_location_exists_in_same_fs_instance_as(
+ rv = rtems_filesystem_location_exists_in_same_instance_as(
currentloc_1,
currentloc_2
);