sway

i3-compatible Wayland compositor
git clone https://git.awy.one/sway
Log | Files | Refs | README | LICENSE

commit c0811fcf8736961725f7aa848e740f38f2bdf6ed
parent 476773dd32e2f423f58dea39fac8b2dc0ba085b9
Author: Simon Ser <contact@emersion.fr>
Date:   Mon,  2 Mar 2020 12:40:19 +0100

Make handle_destroy and output_repaint_timer_handler static

Diffstat:
Minclude/sway/output.h | 2--
Msway/desktop/output.c | 2+-
Msway/desktop/surface.c | 2+-
3 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/include/sway/output.h b/include/sway/output.h @@ -78,8 +78,6 @@ typedef void (*sway_surface_iterator_func_t)(struct sway_output *output, struct struct wlr_surface *surface, struct wlr_box *box, float rotation, void *user_data); -int output_repaint_timer_handler(void *data); - void output_damage_whole(struct sway_output *output); void output_damage_surface(struct sway_output *output, double ox, double oy, diff --git a/sway/desktop/output.c b/sway/desktop/output.c @@ -507,7 +507,7 @@ static bool scan_out_fullscreen_view(struct sway_output *output, return wlr_output_commit(wlr_output); } -int output_repaint_timer_handler(void *data) { +static int output_repaint_timer_handler(void *data) { struct sway_output *output = data; if (output->wlr_output == NULL) { return 0; diff --git a/sway/desktop/surface.c b/sway/desktop/surface.c @@ -5,7 +5,7 @@ #include "sway/server.h" #include "sway/surface.h" -void handle_destroy(struct wl_listener *listener, void *data) { +static void handle_destroy(struct wl_listener *listener, void *data) { struct sway_surface *surface = wl_container_of(listener, surface, destroy); surface->wlr_surface->data = NULL;