diff options
author | 2023-05-17 17:30:48 +0200 | |
---|---|---|
committer | 2023-05-17 17:30:48 +0200 | |
commit | 34220e6e6aaf6cb819f9d9c9e5e5cd84ba515a37 (patch) | |
tree | 957e4ef2a114d1fbedcf319887faf4cfe4d12248 | |
parent | 37424dcb3d2ffdb419ad61dab6e461af000be89c (diff) | |
download | cherry-34220e6e6aaf6cb819f9d9c9e5e5cd84ba515a37.tar.gz cherry-34220e6e6aaf6cb819f9d9c9e5e5cd84ba515a37.zip |
Change calls to the new version of libutils
-rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index 74db07e..7311819 100644 --- a/src/window.c +++ b/src/window.c @@ -54,12 +54,12 @@ cherry_window_new(void) None, NULL, 0, &hints); - clist_add(&(app->windows), w, sizeof(*w)); w->gc = XCreateGC(app->display, w->window_handler, 0, 0); XSetBackground(app->display, w->gc, WhitePixel(app->display, app->screen)); XSetForeground(app->display, w->gc, BlackPixel(app->display, app->screen)); + clist_add(&(app->windows), w); return w; } |