diff options
author | 2023-05-29 23:23:47 +0200 | |
---|---|---|
committer | 2023-05-29 23:23:47 +0200 | |
commit | 59b9bc121f3dbb4c0c6418f7e41d1620a2d8775b (patch) | |
tree | a9ef32b73b285e87305c82f8d143fb2d3efe775e /src | |
parent | 0f42017d221aeeda11e44d778031124cd907673b (diff) | |
download | cherry-59b9bc121f3dbb4c0c6418f7e41d1620a2d8775b.tar.gz cherry-59b9bc121f3dbb4c0c6418f7e41d1620a2d8775b.zip |
Fix a compilation error
Diffstat (limited to 'src')
-rw-r--r-- | src/window.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index c50850e..26e24f3 100644 --- a/src/window.c +++ b/src/window.c @@ -14,7 +14,6 @@ cherry_window_new(void) { CherryWindow *w = malloc(sizeof(*w)); w->title = NULL; - w->dimension = cherry_dimension_new(); w->x = 0; w->y = 0; w->listener = NULL; |