diff options
author | Marvin Borner | 2020-09-03 18:47:38 +0200 |
---|---|---|
committer | Marvin Borner | 2020-09-03 18:47:38 +0200 |
commit | 15a8cb8fa64b12d6c0b65eafb226971cd66dc3cd (patch) | |
tree | 10669f647c05299601497c277b2d4d4e89c4c9af /apps/init.c | |
parent | d79b7492910d4a77b8c3a70f28c5ea4c81a0b2e5 (diff) |
Moved test to app
Diffstat (limited to 'apps/init.c')
-rw-r--r-- | apps/init.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/init.c b/apps/init.c index 05d1a3c..072e24e 100644 --- a/apps/init.c +++ b/apps/init.c @@ -9,8 +9,9 @@ int main(int argc, char **argv) printf("ARGC: %d\n", argc); printf("[%s loaded]\n", argv[0]); + // TODO: Fix GPF if file doesn't exist int wm = exec("/wm", "wm", argv[1], NULL); - int test = exec("/test", "test", NULL); + int test = exec("/window", "test", NULL); return wm + test; } |