aboutsummaryrefslogtreecommitdiff
path: root/apps/init.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/init.c')
-rw-r--r--apps/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/init.c b/apps/init.c
index 73ea745..9d64388 100644
--- a/apps/init.c
+++ b/apps/init.c
@@ -10,8 +10,8 @@ int main(int argc, char **argv)
/* printf("ARGC: %d\n", argc); */
/* printf("[%s loaded]\n", argv[0]); */
- int wm = exec("/wm", "wm", argv[1], NULL);
- int exec = exec("/exec", "test", NULL);
+ int wm = exec("/bin/wm", "wm", argv[1], NULL);
+ int exec = exec("/bin/exec", "test", NULL);
return wm + exec;
}