From 74ab80f54fdc0553fc9ee5f358a816655342a963 Mon Sep 17 00:00:00 2001 From: Baptiste Wicht Date: Fri, 28 Feb 2014 20:14:52 +0100 Subject: [PATCH] Cleanup --- kernel/src/vfs.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/kernel/src/vfs.cpp b/kernel/src/vfs.cpp index ecb254e3..5f58ef29 100644 --- a/kernel/src/vfs.cpp +++ b/kernel/src/vfs.cpp @@ -41,11 +41,12 @@ int64_t vfs::mount(partition_type type, const char* mount_point, const char* dev //TODO Generalize disks::mount(disks::disk_by_uuid(0), 0); - return 0; - + break; default: return -1; } + + //TODO Save the mount point in the mount point list structure } std::vector get_path(const char* file_path){