From 63e86f792167e6cc2e9600d00b184a3c83fe7498 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Thu, 5 Nov 2020 17:30:39 +0100 Subject: Added warning flags and fixed them :) --- apps/window.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'apps/window.c') diff --git a/apps/window.c b/apps/window.c index 4f2aec7..7e1b4be 100644 --- a/apps/window.c +++ b/apps/window.c @@ -20,8 +20,8 @@ int main() struct element *root = gui_init("test", 600, 400, COLOR_BG); struct element *container = gui_add_container(root, 0, 0, root->ctx->width / 2, root->ctx->height, COLOR_RED); - struct element *button = - gui_add_button(container, 10, 10, FONT_24, "Button", COLOR_WHITE, COLOR_BLACK); + struct element *button = gui_add_button(container, 10, 10, FONT_24, strdup("Button"), + COLOR_WHITE, COLOR_BLACK); struct element *text_input = gui_add_text_input(container, 10, 50, 200, FONT_24, COLOR_WHITE, COLOR_BLACK); (void)text_input; -- cgit v1.2.3