aboutsummaryrefslogtreecommitdiff
path: root/apps/wm
diff options
context:
space:
mode:
authorMarvin Borner2021-04-14 13:39:42 +0200
committerMarvin Borner2021-04-14 13:39:42 +0200
commit212582f69dea4c99c292081b15ea526014b9ad44 (patch)
treec4fc1643c5acb8821fc0cfbd1b9c0983a50afe97 /apps/wm
parent9ded3a2bde80eede5fd887812d70c2f834b53c84 (diff)
Even more I/O - started new PS/2 driver
Diffstat (limited to 'apps/wm')
-rw-r--r--apps/wm/wm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/wm/wm.c b/apps/wm/wm.c
index 7ed67af..9af1ede 100644
--- a/apps/wm/wm.c
+++ b/apps/wm/wm.c
@@ -4,7 +4,6 @@
#include <def.h>
#include <errno.h>
#include <input.h>
-#include <ioctl.h>
#include <libgui/gfx.h>
#include <libgui/gui.h>
#include <libgui/msg.h>
@@ -495,7 +494,7 @@ int main(int argc, char **argv)
atexit(handle_exit);
- assert(ioctl("/dev/fb", IO_FB_GET, &screen) == 0);
+ assert(ioctl("/dev/fb", 0, &screen) == 0);
log("WM loaded: %dx%d\n", screen.width, screen.height);
wm_client = (struct client){ .pid = getpid() };
bypp = (screen.bpp >> 3);