aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--examples/layer-shell.c2
-rw-r--r--rootston/main.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/examples/layer-shell.c b/examples/layer-shell.c
index d24399e4..870a3f22 100644
--- a/examples/layer-shell.c
+++ b/examples/layer-shell.c
@@ -437,7 +437,7 @@ int main(int argc, char **argv) {
cursor = wl_cursor_theme_get_cursor(cursor_theme, "crosshair");
assert(cursor);
cursor_image = cursor->images[0];
- cursor_surface = wl_compositor_create_surface(compositor)
+ cursor_surface = wl_compositor_create_surface(compositor);
assert(cursor_surface);
EGLint attribs[] = { EGL_ALPHA_SIZE, 8, EGL_NONE };
diff --git a/rootston/main.c b/rootston/main.c
index 4f623d49..cfa3e4aa 100644
--- a/rootston/main.c
+++ b/rootston/main.c
@@ -30,7 +30,7 @@ int main(int argc, char **argv) {
wlr_log_init(L_DEBUG, NULL);
server.config = roots_config_create_from_args(argc, argv);
server.wl_display = wl_display_create();
- server.wl_event_loop = wl_display_get_event_loop(server.wl_display)
+ server.wl_event_loop = wl_display_get_event_loop(server.wl_display);
assert(server.config && server.wl_display && server.wl_event_loop);
server.backend = wlr_backend_autocreate(server.wl_display);