aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2021-05-15 22:36:21 +0200
committerMarvin Borner2021-05-15 22:36:21 +0200
commitdf5a8c5b32733ae5e2d872b1c7baa4311a9d2308 (patch)
tree460b35ad421bc74e75e942a35379621ba168c9ea /apps
parentf97343c268b0fc19bf93d509a019f3d13c7af5a4 (diff)
Strange fixes
I have no ideas halp
Diffstat (limited to 'apps')
-rw-r--r--apps/wm/wm.c2
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++;