aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/init.c6
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;