From 3d0c30e6697b2b6ae77a03adefa2a8b81ebe4d92 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 21 Mar 2021 14:31:08 +0100 Subject: Cleaner shared memory implementation --- apps/wm.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'apps') diff --git a/apps/wm.c b/apps/wm.c index 531559f..6088a30 100644 --- a/apps/wm.c +++ b/apps/wm.c @@ -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; -- cgit v1.2.3