diff options
author | Marvin Borner | 2021-02-10 20:28:16 +0100 |
---|---|---|
committer | Marvin Borner | 2021-02-10 20:28:16 +0100 |
commit | e7fb1f97a5f95bcfd1d924b345f98bc0b496f5c0 (patch) | |
tree | 70984e3433c5de919d2be59c0ad633156213e30b /apps/wm.c | |
parent | edc570a3552a7fdaaf89962e5374d98c2b3dfaa0 (diff) |
Print to streams instead of serial console
Diffstat (limited to 'apps/wm.c')
-rw-r--r-- | apps/wm.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -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) { |