diff options
author | Marvin Borner | 2021-05-15 22:36:21 +0200 |
---|---|---|
committer | Marvin Borner | 2021-05-15 22:36:21 +0200 |
commit | df5a8c5b32733ae5e2d872b1c7baa4311a9d2308 (patch) | |
tree | 460b35ad421bc74e75e942a35379621ba168c9ea /apps | |
parent | f97343c268b0fc19bf93d509a019f3d13c7af5a4 (diff) |
Strange fixes
I have no ideas halp
Diffstat (limited to 'apps')
-rw-r--r-- | apps/wm/wm.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/wm/wm.c b/apps/wm/wm.c index 2bbabf5..6aed58e 100644 --- a/apps/wm/wm.c +++ b/apps/wm/wm.c @@ -216,6 +216,8 @@ static void rectangle_redraw(vec2 pos1, vec2 pos2) static struct window *window_new(struct client client, struct vec2 pos, struct vec2 size, u32 flags) { + assert(windows); + struct window *win = malloc(sizeof(*win)); static u32 id = 0; win->id = id++; |