aboutsummaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorDrew DeVault <sir@cmpwn.com>2017-08-12 08:21:18 -0400
committerGitHub <noreply@github.com>2017-08-12 08:21:18 -0400
commit53a53f55b4f2212fbe81e77beca85f45400e12de (patch)
tree3d54d0664fe73de8145ee57af890a818ec5b7e5b /include
parent65a899924221c3104800a8676852b34b0cd7223d (diff)
parent3ea878b76e7cf63caf9cddaaabe2faca053d9085 (diff)
Merge pull request #74 from martinetd/more_leaks
More leaks
Diffstat (limited to 'include')
-rw-r--r--include/backend/wayland.h9
1 files changed, 5 insertions, 4 deletions
diff --git a/include/backend/wayland.h b/include/backend/wayland.h
index e6339a23..be96128e 100644
--- a/include/backend/wayland.h
+++ b/include/backend/wayland.h
@@ -25,7 +25,7 @@ struct wlr_backend_state {
struct wl_shell *shell;
struct wl_shm *shm;
struct wl_seat *seat;
- const char *seatName;
+ char *seatName;
};
struct wlr_output_state {
@@ -33,13 +33,14 @@ struct wlr_output_state {
struct wlr_output *wlr_output;
struct wl_surface *surface;
struct wl_shell_surface *shell_surface;
- struct wl_egl_window* egl_window;
- struct wl_callback* frame_callback;
+ struct wl_egl_window *egl_window;
+ struct wl_callback *frame_callback;
void *egl_surface;
};
struct wlr_input_device_state {
- struct wlr_backend_state* backend;
+ struct wlr_backend_state *backend;
+ struct wlr_input_device *wlr_device;
void *resource;
};