aboutsummaryrefslogtreecommitdiff
path: root/apps/wm.c
diff options
context:
space:
mode:
authorMarvin Borner2021-02-10 20:28:16 +0100
committerMarvin Borner2021-02-10 20:28:16 +0100
commite7fb1f97a5f95bcfd1d924b345f98bc0b496f5c0 (patch)
tree70984e3433c5de919d2be59c0ad633156213e30b /apps/wm.c
parentedc570a3552a7fdaaf89962e5374d98c2b3dfaa0 (diff)
Print to streams instead of serial console
Diffstat (limited to 'apps/wm.c')
-rw-r--r--apps/wm.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/wm.c b/apps/wm.c
index b100770..c683020 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -264,7 +264,7 @@ int main(int argc, char **argv)
(void)argc;
int pid = getpid();
vbe = *(struct vbe *)argv[1];
- /* printf("VBE: %dx%d\n", vbe.width, vbe.height); */
+ log("WM loaded: %dx%d\n", vbe.width, vbe.height);
keymap = keymap_parse("/res/keymaps/en.keymap");
@@ -307,8 +307,7 @@ int main(int argc, char **argv)
continue;
}
} else {
- printf("POLL ERROR!\n");
- return 1;
+ err(1, "POLL ERROR!\n");
}
switch (msg.type) {