summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/unmount.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libc/unmount.c')
-rw-r--r--c/src/lib/libc/unmount.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/c/src/lib/libc/unmount.c b/c/src/lib/libc/unmount.c
index 46b11d1848..565fa5f8d8 100644
--- a/c/src/lib/libc/unmount.c
+++ b/c/src/lib/libc/unmount.c
@@ -105,7 +105,7 @@ int unmount(
* XXX I will step off in space when evaluating past the end of the node.
*/
- if ((temp_mt_entry.mt_point_node.ops->unmount )( temp_loc.mt_entry ) != 0 ) {
+ if ((temp_mt_entry.mt_point_node.ops->unmount_h )( temp_loc.mt_entry ) != 0 ) {
rtems_filesystem_freenode( &temp_loc );
return -1;
}
@@ -114,7 +114,7 @@ int unmount(
* Run the unmount function for the subordinate file system.
*/
- if ((temp_mt_entry.mt_fs_root.ops->fsunmount_me )( temp_loc.mt_entry ) != 0){
+ if ((temp_mt_entry.mt_fs_root.ops->fsunmount_me_h )( temp_loc.mt_entry ) != 0){
rtems_filesystem_freenode( &temp_loc );
return -1;
}