diff options
author | Liav A <liavalb@gmail.com> | 2020-04-06 11:55:08 +0300 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2020-04-06 15:36:36 +0200 |
commit | 23fb985f02e0dc07c4ae3082f1a46fd418fcec5d (patch) | |
tree | 32d59261d8407809e7295fac0ebd131a51eb12d5 /Libraries/LibC/unistd.h | |
parent | ecee76b7418c4b3ed17a0a8690e8f8cf6c0736a1 (diff) | |
download | serenity-23fb985f02e0dc07c4ae3082f1a46fd418fcec5d.zip |
Kernel & Userland: Allow to mount image files formatted with Ext2FS
Diffstat (limited to 'Libraries/LibC/unistd.h')
-rw-r--r-- | Libraries/LibC/unistd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Libraries/LibC/unistd.h b/Libraries/LibC/unistd.h index 2566abfdfd..bf8e80068c 100644 --- a/Libraries/LibC/unistd.h +++ b/Libraries/LibC/unistd.h @@ -129,7 +129,7 @@ int fchown(int fd, uid_t, gid_t); int ftruncate(int fd, off_t length); int halt(); int reboot(); -int mount(const char* source, const char* target, const char* fs_type, int flags); +int mount(int source_fd, const char* target, const char* fs_type, int flags); int umount(const char* mountpoint); int pledge(const char* promises, const char* execpromises); int unveil(const char* path, const char* permissions); |