diff options
author | Marvin Borner | 2021-03-21 14:31:08 +0100 |
---|---|---|
committer | Marvin Borner | 2021-03-21 14:31:08 +0100 |
commit | 3d0c30e6697b2b6ae77a03adefa2a8b81ebe4d92 (patch) | |
tree | aaa59a9fa43ddf50dafcc89bf979fb20de351941 /apps | |
parent | 09c3bdb186868204cb03d457244e05e12eb685d6 (diff) |
Cleaner shared memory implementation
Diffstat (limited to 'apps')
-rw-r--r-- | apps/wm.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -84,8 +84,7 @@ static struct window *window_new(struct client client, const char *name, struct if ((flags & WF_NO_FB) != 0) { win->ctx.fb = NULL; } else { - assert(shalloc(win->ctx.bytes, &win->shid) == EOK); - assert(shaccess(win->shid, (u32 *)&win->ctx.fb, &win->ctx.bytes) == EOK); + assert(shalloc(win->ctx.bytes, (u32 *)&win->ctx.fb, &win->shid) == EOK); } win->client = client; win->flags = flags; |