backend/wayland/pointer: fix indentation

This commit is contained in:
Kirill Primak 2022-04-20 14:49:25 +03:00 committed by Simon Zeni
parent 2ce0305483
commit a43d105a50
1 changed files with 7 additions and 7 deletions

View File

@ -401,14 +401,14 @@ const struct wlr_pointer_impl wl_pointer_impl = {
}; };
static void destroy_pointer(struct wlr_wl_pointer *pointer) { static void destroy_pointer(struct wlr_wl_pointer *pointer) {
if (pointer->output->cursor.pointer == pointer) { if (pointer->output->cursor.pointer == pointer) {
pointer->output->cursor.pointer = NULL; pointer->output->cursor.pointer = NULL;
} }
wlr_pointer_finish(&pointer->wlr_pointer); wlr_pointer_finish(&pointer->wlr_pointer);
wl_list_remove(&pointer->output_destroy.link); wl_list_remove(&pointer->output_destroy.link);
wl_list_remove(&pointer->link); wl_list_remove(&pointer->link);
free(pointer); free(pointer);
} }
static void pointer_output_destroy(struct wl_listener *listener, void *data) { static void pointer_output_destroy(struct wl_listener *listener, void *data) {