diff options
Diffstat (limited to 'src/libc/fs/misc.c')
-rw-r--r-- | src/libc/fs/misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libc/fs/misc.c b/src/libc/fs/misc.c index f0925ba..d7013e8 100644 --- a/src/libc/fs/misc.c +++ b/src/libc/fs/misc.c @@ -164,7 +164,7 @@ int mount_at(const char *path) { _sys_mount(h, path, strlen(path)); close(h); } else { - _sys_mount(HANDLE_NULLFS, path, strlen(path)); + _sys_mount(-1, path, strlen(path)); } return ret; } |