diff options
author | Marvin Borner | 2021-03-12 19:11:26 +0100 |
---|---|---|
committer | Marvin Borner | 2021-03-12 19:11:26 +0100 |
commit | bbf700a0c6b2f8ca9a73c2a334973286d5b8afcc (patch) | |
tree | c6d95e742da7b0ca0c95e5377840e888a579030f /apps | |
parent | 0aef683b9d1e08555791426ba12223ed78051353 (diff) |
Started basic ioctl fb interface
Diffstat (limited to 'apps')
-rw-r--r-- | apps/init.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/apps/init.c b/apps/init.c index 9e57078..6503022 100644 --- a/apps/init.c +++ b/apps/init.c @@ -8,13 +8,11 @@ int main(int argc, char **argv) { - log("Loaded!\n"); + log("%s loaded\n", argv[0]); while (1) { }; - (void)argc; - log("%s loaded\n", argv[0]); - int wm = exec("/bin/wm", "wm", argv[1], NULL); + int wm = exec("/bin/wm", "wm", NULL); int test = exec("/bin/window", "test", NULL); return wm + test; |