diff options
author | Marvin Borner | 2020-11-01 00:02:33 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-01 00:02:33 +0100 |
commit | e0d3b1671b3f94657d70223b51285ed287c882df (patch) | |
tree | 53bbe85c5504b869bc118a14eff468b647ae2d7b /apps/init.c | |
parent | c35a83655707c9aae8f728eb850255ad0f115d11 (diff) |
New binary directory structure
Diffstat (limited to 'apps/init.c')
-rw-r--r-- | apps/init.c | 4 |
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; } |