summaryrefslogtreecommitdiff
path: root/src/init/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/init/main.c')
-rw-r--r--src/init/main.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/init/main.c b/src/init/main.c
index 73df25b..5df6bb3 100644
--- a/src/init/main.c
+++ b/src/init/main.c
@@ -32,11 +32,11 @@ int main(void) {
}
void fs_prep(void) {
- handle_t front, back;
- front = _syscall_fs_create(&back);
+ handle_t front;
+ front = _syscall_fs_create();
if (!_syscall_fork()) {
- tar_driver(back, &_initrd);
+ tar_driver(&_initrd);
_syscall_exit(1);
}