From 392b0ff1fcc52c189f131c71ea2a969d1b8c5690 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Tue, 16 Feb 2021 22:33:42 +0100 Subject: Okay! --- libgui/gfx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'libgui/gfx.c') diff --git a/libgui/gfx.c b/libgui/gfx.c index d3a66f2..a6e23e6 100644 --- a/libgui/gfx.c +++ b/libgui/gfx.c @@ -100,8 +100,8 @@ static void draw_rectangle(struct context *ctx, int x1, int y1, int x2, int y2, struct context *gfx_new_ctx(struct context *ctx) { struct message msg = { 0 }; - msg_send(pidof(WM_PATH), GFX_NEW_CONTEXT, ctx); - msg_receive(&msg); + assert(msg_send(pidof(WM_PATH), GFX_NEW_CONTEXT, ctx) > 0); + assert(msg_receive(&msg) > 0); memcpy(ctx, msg.data, sizeof(*ctx)); return ctx; } -- cgit v1.2.3